代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/125439/6029282
java command.java
/* Generated by Together */
package com.javapatterns.command.undoconcept;
public interface Command {
void execute();
void unexecute();
void reexecute();
}
www.eeworm.com/read/125439/6029290
java command.java
/* Generated by Together */
package com.javapatterns.command.drawapplet;
public interface Command {
abstract public void execute();
abstract public void unexecute();
www.eeworm.com/read/125439/6029296
java command.java
/* Generated by Together */
package com.javapatterns.command.drawlines;
public interface Command {
abstract public void execute();
abstract public void unexecute();
www.eeworm.com/read/125439/6029311
java command.java
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/125439/6029318
java command.java
package com.javapatterns.command.television;
public interface Command
{
void execute();
}
www.eeworm.com/read/125439/6029327
java command.java
/* Generated by Together */
package com.javapatterns.command.book;
public interface Command {
void execute();
}
www.eeworm.com/read/125439/6029334
java command.java
package com.javapatterns.command.stocktrader;
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/125381/6030423
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/125140/6032731
h command.h
/*
* $Id: command.h,v 1.3 2002/02/07 10:25:41 linfusheng Exp $
*/
#define PATHLEN 1024
#define CMDLEN 10240
#define MAXARGS 1000
#define ALIASALLOC 20
#define STDIN 0
#define STDOUT 1
www.eeworm.com/read/125140/6032754
c command.c
/*
* $Id: command.c,v 1.7 2002/02/07 01:08:53 linfusheng Exp $
*/
#include "includes.h"
#include "command.h"
#include "sjy22.h"
#include "InetAddr.h"
#include "ether.h"
#include "nic.h"