代码搜索:Command

找到约 10,000 项符合「Command」的源代码

代码结果 10,000
www.eeworm.com/read/243866/4518897

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/243866/4518904

java command.java

package com.javapatterns.command.television; public interface Command { void execute(); }
www.eeworm.com/read/243866/4518914

java command.java

/* Generated by Together */ package com.javapatterns.command.book; public interface Command { void execute(); }
www.eeworm.com/read/243866/4518921

java command.java

package com.javapatterns.command.stocktrader; public interface Command { public abstract void execute ( ); }
www.eeworm.com/read/243630/4520339

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/243567/4523645

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/243142/4532373

po command.po

command.o command.o: command.c ../../include/blob/config.h \ ../../include/blob/command.h ../../include/blob/types.h \ ../../include/blob/debug.h ../../include/blob/errno.h \ ../../include/blob/
www.eeworm.com/read/242732/4540741

c command.c

/* Command line widget. Copyright (C) 1995 Miguel de Icaza This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as pu
www.eeworm.com/read/242732/4540746

h command.h

#ifndef __COMMAND_H #define __COMMAND_H typedef struct { WInput input; callback_fn old_callback; } WCommand; WCommand *command_new (int y, int x, int len); /* Return the Input * f
www.eeworm.com/read/242657/4547401

h command.h

/* -*- C++ -*- */ // $Id: Command.h 58997 2004-07-13 02:52:19Z ossama $ #ifndef COMMAND_H #define COMMAND_H #include "ace/SString.h" #include "ace/Message_Block.h" // Listing 01 code/ch18 class Com