samples/individualsamples/src/org/apidesign/samples/TopManager.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 21:30:10 +0100
changeset 409 40cabcdcd2be
permissions -rw-r--r--
Updating to NBMs from NetBeans 8.0.1 as some of them are required to run 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
}