代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/283473/4078743
java command.java
/**
* Title:
* Description:
* Copyright: Copyright (c) 2002
* Company: The9.com
* @author Jerry Shen
* @version 0.5
*/
public interface Command {
public abstr
www.eeworm.com/read/283334/4083257
tex command.tex
\section{\class{wxCommand}}\label{wxcommand}
wxCommand is a base class for modelling an application command,
which is an action usually performed by selecting a menu item, pressing
a toolbar butt
www.eeworm.com/read/281688/4113136
java command.java
/*
* @(#)Command.java
*
* Project: JHotdraw - a GUI framework for technical drawings
* http://www.jhotdraw.org
* http://jhotdraw.sourceforge.net
* Copyright:
www.eeworm.com/read/281624/4113836
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
// 命令栈数据结构
struct CommandDS
{
char szElement[81];
};
// 命令栈链表
struct CommandList
{
struct CommandDS Command;
struct
www.eeworm.com/read/281624/4113846
c command.c
#include "Command.h"
#include "Server.h"
#include
// 添加一个元素到命令栈中
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command)
{
if (pNode->pNext = (struct C
www.eeworm.com/read/281624/4113863
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
struct CommandDS
{
char szElement[81];
};
struct CommandList
{
struct CommandDS Command;
struct CommandList *pNext;
}
www.eeworm.com/read/281624/4113875
c command.c
#include "Command.h"
#include "client.h"
#include
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command)
{
if (pNode->pNext = (struct CommandList *)mal
www.eeworm.com/read/279884/4132250
java command.java
package org.apache.velocity.demo.action;
/*
* Copyright 1999,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this
www.eeworm.com/read/277246/4157403
java command.java
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* ful
www.eeworm.com/read/276984/4160135
java command.java
package fp.hwdesc;
public abstract class Command{
String _type=null;
public String getType(){return _type;}
}