代码搜索:Command

找到约 10,000 项符合「Command」的源代码

代码结果 10,000
www.eeworm.com/read/242657/4549258

cpp command.cpp

#include #include using std::cerr; using std::endl; class Command { public: enum Value { HELP = 0, VERSION, DEFAULT }; Command (Value v = Command::DEFAULT)
www.eeworm.com/read/241991/4556777

java command.java

// $Id: Command.java,v 1.3 2006/04/05 05:33:57 belaban Exp $ package org.jgroups.util; /** * The Command patttern (see Gamma et al.). Implementations would provide their * own execute
www.eeworm.com/read/241710/4558777

cs command.cs

using System; namespace State { /// /// Summary description for Command. /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4558795

cs command.cs

using System; using CsharpPats; namespace Memento { /// /// Command interface /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4558851

cs command.cs

using System; using CsharpPats; namespace Mediate { /// /// Command interface /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4558925

cs command.cs

using System; namespace Interpreter { /// /// Summary description for Command. /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4558972

cs command.cs

using System; using CsharpPats; namespace Strategy { /// /// Command interface /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4559007

cs command.cs

using System; namespace CHolder { /// /// defines Command interface /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4559020

cs command.cs

using System; namespace ButtonMenu { /// /// interface for Command type /// public interface Command { void Execute(); } }
www.eeworm.com/read/241710/4559033

cs command.cs

using System; namespace UndoCommand { /// /// defines Command interface /// public interface Command { void Execute(); void Undo(); bool isUndo(); } }