代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/468127/1492914
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/468127/1493162
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/462103/1547930
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/452218/1657782
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/248660/4465964
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/248660/4466212
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/247281/4483174
js fckspellcheckcommand_gecko.js
var FCKSpellCheckCommand = function()
{
this.Name = 'SpellCheck' ;
this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
}
FCKSpellCheckCommand.prototype.Execute = function()
{
www.eeworm.com/read/246655/4492404
s thumbsub.s
AREA ThumbSub, CODE, READONLY ; Name this block of code
ENTRY ; Mark first instruction to execute
CODE32 ; Subsequent ins
www.eeworm.com/read/243866/4518866
java command.java
/* Generated by Together */
package com.javapatterns.command.undoconcept;
public interface Command {
void execute();
void unexecute();
void reexecute();
}
www.eeworm.com/read/242506/4553754
java icommand.java
package accp.command;
import accp.help.Helper;
public interface ICommand {
public String execute(Helper h);
}