代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/377893/2695328
cs command.cs
using System;
namespace Interpreter
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/377893/2695374
cs command.cs
using System;
using CsharpPats;
namespace Strategy
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/377893/2695406
cs command.cs
using System;
namespace CHolder
{
///
/// defines Command interface
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/377893/2695419
cs command.cs
using System;
namespace ButtonMenu
{
///
/// interface for Command type
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/377893/2695432
cs command.cs
using System;
namespace UndoCommand
{
///
/// defines Command interface
///
public interface Command {
void Execute();
void Undo();
bool isUndo();
}
}
www.eeworm.com/read/377893/2695706
cs command.cs
using System;
using CsharpPats;
namespace Strategy
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/377478/2699978
java command.java
import com.jacob.com.*;
public class Command extends Dispatch
{
public Command()
{
super("ADODB.Command");
}
/**
* This constructor is used instead of a case operation to
*
www.eeworm.com/read/377251/2703456
c command.c
#include
#include
#include
#include
#define PROMPT ">"
void
getline(char *buf,int *num,int max_num)
{
static int line_len = 0;
www.eeworm.com/read/376380/2711187
java command.java
/********************************************************************
* 项目名称 :j2me学习 J2me Wap Explorer
*
* Copyright 2005-2006 Wuhua. All rights reserved
*
* 本程序只用于学
www.eeworm.com/read/375444/2724388
java command.java
package com.podome.ui;
import java.util.Vector;
import javax.microedition.lcdui.Font;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;
import com.podome.log.