代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/115273/6117350
h command.h
/**
*
* $Id: Command.h,v 1.1 2004/08/28 19:23:24 dannybackx Exp $
*
* Copyright (C) 1995 Free Software Foundation, Inc.
* Copyright (C) 1995-2000 LessTif Development Team
*
* This file is part
www.eeworm.com/read/115272/6118672
h command.h
/**
*
* $Id: Command.h,v 1.1 2004/08/28 19:23:24 dannybackx Exp $
*
* Copyright (C) 1995 Free Software Foundation, Inc.
* Copyright (C) 1995-2000 LessTif Development Team
*
* This file is part
www.eeworm.com/read/114609/6123157
java command.java
// Command.java
// $Id: Command.java,v 1.6 2000/08/16 21:37:46 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.
www.eeworm.com/read/114207/6124858
java command.java
/*
* @(#)Command.java 1.27 01/07/10
* Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Sun
* Microsystems,
www.eeworm.com/read/113176/6136282
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/110035/6165887
p command.p
command.o: command.c ../../include/blob/config.h \
../../include/blob/command.h ../../include/blob/types.h \
../../include/blob/errno.h ../../include/blob/error.h \
../../include/blob/init.h ../../
www.eeworm.com/read/110034/6169262
c command.c
/* $Id: command.c,v 1.1.4.1 2001/11/20 14:19:37 kai Exp $
*
* Copyright (C) 1996 SpellCaster Telecommunications Inc.
*
* This software may be used and distributed according to the terms
* of the
www.eeworm.com/read/108102/6186710
java command.java
package com.javapatterns.command.lightandfan;
public interface Command
{
//correction abstraction
void execute();
}
www.eeworm.com/read/108102/6186721
java command.java
package com.javapatterns.command.document;
public interface Command
{
void execute();
}
www.eeworm.com/read/108102/6186727
java command.java
package com.javapatterns.command.itsukyu;
import java.awt.*;
public abstract class Command extends Button
{
public Command(String caption)
{
super(caption);
}
pub