代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/240529/4573032
java command.java
/* Generated by Together */
package com.javapatterns.command.document;
public interface Command {
void execute();
}
www.eeworm.com/read/240529/4573102
java command.java
/* Generated by Together */
package com.javapatterns.command.book;
public interface Command {
void execute();
}
www.eeworm.com/read/240529/4573109
java command.java
package com.javapatterns.command.stocktrader;
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/238667/4613694
s int_gfd.s
include asm.h
AREA INT, CODE, READONLY
ENTRY ; Mark first instruction to execute
;******************
www.eeworm.com/read/229812/4752747
asm loadle.asm
;=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
;
;Load, relocate and execute the application code. LE format loader.
;
;On Entry:
;
;EBX - Mod
www.eeworm.com/read/222446/4819244
java action.java
package com.unisolution.liyin;
public interface Action {
public String execute(String str);
}
www.eeworm.com/read/219872/4844836
java nocommand.java
package headfirst.command.remote;
public class NoCommand implements Command {
public void execute() { }
}
www.eeworm.com/read/213496/4916489
bat ddl2hbm.bat
@echo off
rem -------------------------------------------------------------------
rem Execute ddl2hbm tool
rem -------------------------------------------------------------------
call setenv
www.eeworm.com/read/213496/4916491
bat class2hbm.bat
@echo off
rem -------------------------------------------------------------------
rem Execute class2hbm tool
rem -------------------------------------------------------------------
call setenv
www.eeworm.com/read/181243/5277709
java nocommand.java
package headfirst.command.remote;
public class NoCommand implements Command {
public void execute() { }
}