代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/306299/3741887
bat hbm2java.bat
@echo off
rem -------------------------------------------------------------------
rem Execute hbm2java tool
rem -------------------------------------------------------------------
call setenv.
www.eeworm.com/read/301781/3837033
bat hbm2java.bat
@echo off
rem -------------------------------------------------------------------
rem Execute hbm2java tool
rem -------------------------------------------------------------------
call setenv.
www.eeworm.com/read/287209/4025429
java task.java
package compute;
import java.io.Serializable;
public interface Task extends Serializable {
Object execute();
}
www.eeworm.com/read/382638/2628670
txt add64.txt
AREA ARMex, CODE, READONLY ; name this block of code
ENTRY ; mark first instruction
; to execute
start
LDR
www.eeworm.com/read/381758/2640846
java task.java
package compute;
import java.io.Serializable;
public interface Task extends Serializable {
Object execute();
}
www.eeworm.com/read/380073/2663831
java command.java
package headfirst.command.party;
public interface Command {
public void execute();
public void undo();
}
www.eeworm.com/read/380073/2663862
java command.java
package headfirst.command.undo;
public interface Command {
public void execute();
public void undo();
}
www.eeworm.com/read/377893/2695406
cs command.cs
using System;
namespace CHolder
{
///
/// defines Command interface
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/377893/2695419
cs command.cs
using System;
namespace ButtonMenu
{
///
/// interface for Command type
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/374786/2746004
java action.java
package com.onemid.mohan.cms;
public interface Action {
public String execute(String str);
}