samples/individualsamples/src/org/apidesign/samples/TopManager.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 20:46:27 +0100
changeset 408 9a439a79c6d0
permissions -rw-r--r--
Use scala 2.10.4 to compile on JDK8
jtulach@212
     1
package org.apidesign.samples;
jtulach@212
     2
jtulach@212
     3
// BEGIN: end.TopManager
jtulach@212
     4
public abstract class TopManager {
jtulach@212
     5
    public abstract ExecutionEngine getExecutionEngine();
jtulach@212
     6
    public abstract CompilationEgine getCompilationEngine();
jtulach@212
     7
// FINISH: end.TopManager
jtulach@212
     8
    
jtulach@212
     9
    
jtulach@212
    10
    public static abstract class ExecutionEngine {
jtulach@212
    11
    }
jtulach@212
    12
    
jtulach@212
    13
    public static abstract class CompilationEgine {
jtulach@212
    14
    }
jtulach@212
    15
}