代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/380073/2663831
java command.java
package headfirst.command.party;
public interface Command {
public void execute();
public void undo();
}
www.eeworm.com/read/380073/2663850
java command.java
package headfirst.command.simpleremote;
public interface Command {
public void execute();
}
www.eeworm.com/read/380073/2663862
java command.java
package headfirst.command.undo;
public interface Command {
public void execute();
public void undo();
}
www.eeworm.com/read/380073/2663875
java command.java
package headfirst.command.remote;
public interface Command {
public void execute();
}
www.eeworm.com/read/379392/2674381
java command.java
/*
Copyright 2006 Christian Gross http://www.devspace.com
From the book Ajax Patterns and Best Practices
Licensed under the Apache License, Version 2.0 (the "License");
you may not
www.eeworm.com/read/378752/2682044
java command.java
package model;
//Copyright (C) 2008 Harald Unander, Wang Wenjuan
//
// This file is part of WlanTV.
//
// WlanTV is free software: you can redistribute it and/or modify
// it under th
www.eeworm.com/read/377940/2694733
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/377893/2695182
cs command.cs
using System;
namespace State
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/377893/2695200
cs command.cs
using System;
using CsharpPats;
namespace Memento
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/377893/2695256
cs command.cs
using System;
using CsharpPats;
namespace Mediate
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}