代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/318815/3562623
java macrocommand.java
/* Generated by Together */
package com.javapatterns.command.document;
public interface MacroCommand extends Command {
void execute();
void remove(Command toRemove);
void ad
www.eeworm.com/read/318815/3562677
java macrocommand.java
package com.javapatterns.command.audioplayer;
public interface MacroCommand extends Command
{
void execute();
void remove(Command toRemove);
void add(Command toAdd);
}
www.eeworm.com/read/318815/3562702
java invoker.java
package com.javapatterns.command;
public class Invoker
{
public Invoker(Command command)
{
this.command = command;
}
public void action()
{
command.execute()
www.eeworm.com/read/314938/3628358
java macrocommand.java
/* Generated by Together */
package com.javapatterns.command.document;
public interface MacroCommand extends Command {
void execute();
void remove(Command toRemove);
void ad
www.eeworm.com/read/314938/3628412
java macrocommand.java
package com.javapatterns.command.audioplayer;
public interface MacroCommand extends Command
{
void execute();
void remove(Command toRemove);
void add(Command toAdd);
}
www.eeworm.com/read/314938/3628437
java invoker.java
package com.javapatterns.command;
public class Invoker
{
public Invoker(Command command)
{
this.command = command;
}
public void action()
{
command.execute()
www.eeworm.com/read/303917/3804437
java command.java
package agenda.command;
/**
* Command interface
* @author wc
*/
public interface Command {
void parse(String[] args) throws Exception;
void execute() throws Exception;
}
www.eeworm.com/read/302553/3825103
java hellorequest.java
public class HelloRequest implements IRequest {
private String name;
public HelloRequest(String name) {
this.name = name;
}
public void execute() {
System.o
www.eeworm.com/read/296553/3901495
rtn cmdparser.rtn
PromptAndExecCmd {Prompt for a command and execute it.} {PromptAndExecCmd\( \)} {PromptAndExecCmd(\ )} {VxWorks API Reference} {
www.eeworm.com/read/432926/1886137
pde redraw.pde
/**
* Redraw.
*
* The redraw() function makes draw() execute once.
* In this example, draw() is executed once every time
* the mouse is clicked.
*/
// The statements in the setup() funct