~fredericp/zaluum/rt

« back to all changes in this revision

Viewing changes to org.zaluum.javadevice.runtime/src/org/zaluum/javadevice/runtime/java/BoxExecutionFactory.java

  • Committer: Frederic Perez Ordeig
  • Date: 2010-04-07 07:55:38 UTC
  • mfrom: (308.1.63 wip-scala)
  • Revision ID: frederic@zaluum.com-20100407075538-muaneuoz134fqu5o
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
package org.zaluum.javadevice.runtime.java;
20
20
 
21
 
import org.zaluum.cmodel.CBox;
 
21
import org.zaluum.cmodel.CBoxInstance;
22
22
import org.zaluum.runtime.CannotExecuteBoxException;
23
23
 
24
24
/**
33
33
         * @return
34
34
         * @throws CannotExecuteBoxException 
35
35
         */
36
 
        BoxExecution create(CBox box, BoxExecution toReplace, BoxProcess boxProcess) 
 
36
        BoxExecution create(CBoxInstance box, BoxProcess boxProcess) 
37
37
                throws CannotExecuteBoxException, BoxExecutionException;
38
38
 
 
39
        void printStats();
 
40
 
 
41
        void clearCache();
 
42
 
39
43
}