代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/179007/9379255
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/179007/9379267
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/179007/9379287
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/179007/9379294
java command.java
package com.javapatterns.command.television;
public interface Command
{
void execute();
}
www.eeworm.com/read/179007/9379304
java command.java
/* Generated by Together */
package com.javapatterns.command.book;
public interface Command {
void execute();
}
www.eeworm.com/read/179007/9379319
java command.java
package com.javapatterns.command.stocktrader;
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/178776/9385639
c command.c
/*
* command.c
*/
#include
#include
#include
#include
#include
#include
#include "command.h"
#include "assoc.h"
#include "fs.h"
#in
www.eeworm.com/read/178776/9385642
h command.h
/*
* command.h
*/
#ifndef __COMMAND_H__
#define __COMMAND_H__
#include "listen.h"
bool process_command(struct listen_data *, FILE *, char *);
#endif
www.eeworm.com/read/178591/9390872
ocx command.ocx
www.eeworm.com/read/178591/9390885