代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/316872/3602605
h command.h
/* SCTP kernel reference Implementation
* (C) Copyright IBM Corp. 2001, 2004
* Copyright (C) 1999-2001 Cisco, Motorola
*
* This file is part of the SCTP kernel reference Implementation
*
* These
www.eeworm.com/read/316872/3606171
c command.c
/* SCTP kernel reference Implementation Copyright (C) 1999-2001
* Cisco, Motorola, and IBM
* Copyright 2001 La Monte H.P. Yarroll
*
* This file is part of the SCTP kernel reference Implementation
www.eeworm.com/read/316011/3613469
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/314938/3628345
java command.java
package com.javapatterns.command.lightandfan;
public interface Command {
public abstract void execute ( );
}
www.eeworm.com/read/314938/3628356
java command.java
/* Generated by Together */
package com.javapatterns.command.document;
public interface Command {
void execute();
}
www.eeworm.com/read/314938/3628362
java command.java
package com.javapatterns.command.itsukyu;
import java.awt.*;
abstract public class Command extends Button
{
public Command(String caption)
{
super(caption);
}
pub
www.eeworm.com/read/314938/3628372
java command.java
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/314938/3628378
java command.java
/* Generated by Together */
package com.javapatterns.command.undoconcept;
public interface Command {
void execute();
void unexecute();
void reexecute();
}
www.eeworm.com/read/314938/3628382
java command.java
/* Generated by Together */
package com.javapatterns.command;
public interface Command {
void execute();
}
www.eeworm.com/read/314938/3628388
java command.java
/* Generated by Together */
package com.javapatterns.command.drawapplet;
public interface Command {
abstract public void execute();
abstract public void unexecute();