代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/380073/2663877
java hottuboffcommand.java
package headfirst.command.remote;
public class HottubOffCommand implements Command {
Hottub hottub;
public HottubOffCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {
www.eeworm.com/read/380073/2663887
java stereooffcommand.java
package headfirst.command.remote;
public class StereoOffCommand implements Command {
Stereo stereo;
public StereoOffCommand(Stereo stereo) {
this.stereo = stereo;
}
public void execute() {
www.eeworm.com/read/375427/2724604
java agentinterface.java
// An interface for a transportable object
// representing a mobile agent.
// M. Liu
import java.io.Serializable;
public interface AgentInterface extends Serializable {
void execute();
www.eeworm.com/read/358155/2999401
java verb.java
public class Verb extends ParseVerb implements Command
{
protected Data data;
protected JawtList ptable;
public Verb(String s)
{
super(s);
}
public void Execute()
www.eeworm.com/read/263647/4301355
java badapple.java
package app.proxy.dynamic;
/**
* An example of a class with a method that takes too long to execute.
*/
public class BadApple {
public String name;
/**
* Create a "bad apple"
www.eeworm.com/read/255923/4371628
pas unit2.pas
unit Unit2;
interface
uses
Classes,winsock,sysutils,windows;
type
convert = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
end
www.eeworm.com/read/255418/4375977
java macrocommand.java
package headfirst.command.party;
public class MacroCommand implements Command {
Command[] commands;
public MacroCommand(Command[] commands) {
this.commands = commands;
}
public void execute
www.eeworm.com/read/255418/4375984
java stereooffcommand.java
package headfirst.command.party;
public class StereoOffCommand implements Command {
Stereo stereo;
public StereoOffCommand(Stereo stereo) {
this.stereo = stereo;
}
public void execute() {
www.eeworm.com/read/255418/4375990
java lightoffcommand.java
package headfirst.command.simpleremote;
public class LightOffCommand implements Command {
Light light;
public LightOffCommand(Light light) {
this.light = light;
}
public void execute() {
www.eeworm.com/read/255418/4376018
java hottuboffcommand.java
package headfirst.command.remote;
public class HottubOffCommand implements Command {
Hottub hottub;
public HottubOffCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {