samples/individualsamples/src/org/apidesign/samples/TopManager.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
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
}