代码搜索:execute

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

代码结果 10,000
www.eeworm.com/read/477629/1359144

java hibernatecallback.java

package com.redsaga.hibnatesample.step2.util; import net.sf.hibernate.HibernateException; public interface HibernateCallback { Object execute() throws HibernateException; }
www.eeworm.com/read/477629/1359283

java hibernatecallback.java

package com.redsaga.hibernatesample.step3.util; import net.sf.hibernate.HibernateException; public interface HibernateCallback { Object execute() throws HibernateException; }
www.eeworm.com/read/456693/1604685

c ceval.c

/* Portions Copyright (c) 2005 Nokia Corporation */ /* Execute compiled code */ /* XXX TO DO: XXX speed up searching for keywords by using a dictionary XXX document it! */ #includ
www.eeworm.com/read/249104/4457541

java lightoffcommand.java

package testcommand; //关灯命令: public class LightOffCommand implements Command{ private Light myLight; public LightOffCommand (Light L) { myLight = L; } public void execute () {
www.eeworm.com/read/243866/4518846

java macrocommand.java

/* Generated by Together */ package com.javapatterns.command.document; public interface MacroCommand extends Command { void execute(); void remove(Command toRemove); void ad
www.eeworm.com/read/243866/4518900

java macrocommand.java

package com.javapatterns.command.audioplayer; public interface MacroCommand extends Command { void execute(); void remove(Command toRemove); void add(Command toAdd); }
www.eeworm.com/read/243866/4518925

java invoker.java

package com.javapatterns.command; public class Invoker { public Invoker(Command command) { this.command = command; } public void action() { command.execute()
www.eeworm.com/read/241253/4562571

dlexe

Downloading and Executing Your Application Downloading and Executing Your Application The procedure used to download and execute your application depends on what debugger you are using. This debug
www.eeworm.com/read/240529/4573034

java macrocommand.java

/* Generated by Together */ package com.javapatterns.command.document; public interface MacroCommand extends Command { void execute(); void remove(Command toRemove); void ad
www.eeworm.com/read/240529/4573088

java macrocommand.java

package com.javapatterns.command.audioplayer; public interface MacroCommand extends Command { void execute(); void remove(Command toRemove); void add(Command toAdd); }