代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/230755/4719193
java command.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/230232/4723704
cs command.cs
using System;
namespace State
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/230232/4723722
cs command.cs
using System;
using CsharpPats;
namespace Memento
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/230232/4723778
cs command.cs
using System;
using CsharpPats;
namespace Mediate
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/230232/4723852
cs command.cs
using System;
namespace Interpreter
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/230232/4723899
cs command.cs
using System;
using CsharpPats;
namespace Strategy
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/230232/4723934
cs command.cs
using System;
namespace CHolder
{
///
/// defines Command interface
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/230232/4723947
cs command.cs
using System;
namespace ButtonMenu
{
///
/// interface for Command type
///
public interface Command {
void Execute();
}
}
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/230232/4724242
cs command.cs
using System;
using CsharpPats;
namespace Strategy
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}