代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/230232/4723960
cs command.cs
using System;
namespace UndoCommand
{
///
/// defines Command interface
///
public interface Command {
void Execute();
void Undo();
bool isUndo();
}
}
www.eeworm.com/read/229812/4748067
vi cmdme.vi
#
# Cmdhook script - this script will parse the command line and
# execute commands separated by a ';' one at a time
#
#
# starting variables
#
assign %c = 0
assign %q
www.eeworm.com/read/213554/4915409
java command.java
package gov.gdlt.ssgly.taxcore.taxblh.gzda.service.xmlinterface;
public interface Command {
public String execute( RequestHelper helper );
}