代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/314938/3628372
java command.java
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/314938/3628388
java command.java
/* Generated by Together */
package com.javapatterns.command.drawapplet;
public interface Command {
abstract public void execute();
abstract public void unexecute();
www.eeworm.com/read/314938/3628394
java command.java
/* Generated by Together */
package com.javapatterns.command.drawlines;
public interface Command {
abstract public void execute();
abstract public void unexecute();
www.eeworm.com/read/285684/4047577
java tranxcommand.java
/*
*
* @author chenqj
* Created on 2005-1-12
*
*/
package com.cache.behavior;
/**
* @author chenqj
*
*/
public interface TranxCommand {
void execute();
}
www.eeworm.com/read/283433/4079559
pas thrdu.pas
unit ThrdU;
interface
uses
Classes;
type
TTestThread = class(TThread)
private
Answer: integer;
protected
procedure GiveAnswer;
procedure Execute; override;
end;
www.eeworm.com/read/436639/1846934
pas paintth.pas
unit paintth;
interface
uses
Classes, Graphics, Windows;
type
TPainterThread = class(TThread)
private
Color: Integer;
protected
procedure Execute; override;
public
www.eeworm.com/read/436639/1846938
pas checkth.pas
unit CheckTh;
interface
uses
Classes, Graphics, ComCtrls;
type
TFindThread = class(TThread)
protected
Progr: Integer;
procedure UpdateProgress;
procedure Execute; over
www.eeworm.com/read/409361/2233165
js fckplugin.js
/* FCKCommands.RegisterCommand(commandName, command)
commandName - Command name, referenced by the Toolbar, etc...
command - Command object (must provide an Execute() function).
*/
www.eeworm.com/read/407756/2258897
runit
#!/bin/bash
# Scriptname: runit
PS3="Select a program to execute: "
select program in 'ls -F' pwd date
do
$program
done