TopManager example taken from sources
authorJaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:06:13 +0200
changeset 212571a6fbbc508
parent 211 7c1ea4d5c6c8
child 213 de35ca154c1d
TopManager example taken from sources
samples/individualsamples/src/org/apidesign/samples/TopManager.java
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/individualsamples/src/org/apidesign/samples/TopManager.java	Sat Jun 14 10:06:13 2008 +0200
     1.3 @@ -0,0 +1,15 @@
     1.4 +package org.apidesign.samples;
     1.5 +
     1.6 +// BEGIN: end.TopManager
     1.7 +public abstract class TopManager {
     1.8 +    public abstract ExecutionEngine getExecutionEngine();
     1.9 +    public abstract CompilationEgine getCompilationEngine();
    1.10 +// FINISH: end.TopManager
    1.11 +    
    1.12 +    
    1.13 +    public static abstract class ExecutionEngine {
    1.14 +    }
    1.15 +    
    1.16 +    public static abstract class CompilationEgine {
    1.17 +    }
    1.18 +}