代码搜索:Command

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

代码结果 10,000
www.eeworm.com/read/394045/2460703

java command.java

package org.hibernate.auction.command; import java.io.Serializable; /** * The interface for generic commands between presentation and business tier. * * @author Christian Bauer
www.eeworm.com/read/393286/2480259

c command.c

/* $Id: command.c,v 1.4.10.1 2001/09/23 22:24:59 kai Exp $ * * Copyright (C) 1996 SpellCaster Telecommunications Inc. * * This software may be used and distributed according to the terms * of th
www.eeworm.com/read/393286/2482047

c command.c

/* * IBM ASM Service Processor Device Driver * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the
www.eeworm.com/read/393286/2484692

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/393024/2489550

c command.c

/******************************************************************** * Description: command.c * emcmotCommandhandler() takes commands passed from user space and * performs various functions based
www.eeworm.com/read/392558/2494671

java command.java

package com.javapatterns.command.lightandfan; public interface Command { public abstract void execute ( ); }
www.eeworm.com/read/392558/2494682

java command.java

/* Generated by Together */ package com.javapatterns.command.document; public interface Command { void execute(); }
www.eeworm.com/read/392558/2494688

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/392558/2494698

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/392558/2494704

java command.java

/* Generated by Together */ package com.javapatterns.command.undoconcept; public interface Command { void execute(); void unexecute(); void reexecute(); }