samples/individualsamples/src/org/apidesign/samples/TopManager.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:06:13 +0200
changeset 212 571a6fbbc508
permissions -rw-r--r--
TopManager example taken from sources
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
}