Package org.omegahat.Environment.Interpreter

Examples of org.omegahat.Environment.Interpreter.Options


      property values parameterizing the manager
      and its options.
   */

public OmegaInterfaceManager(java.io.InputStream stream)  {
super(new Options(stream));
}
View Full Code Here


      @param f the file containing the name-value properties
         parameterizing the manager and its different
         options.
   */
public OmegaInterfaceManager(java.io.File f)  {
super(new Options(f));
}
View Full Code Here

      identified by <code>name</code> or contained
      in the text of <code>name</code> if it does not
      refer to a file.
    */
public OmegaInterfaceManager(String name) throws Throwable {
super(new Options(name));
}
View Full Code Here

TOP

Related Classes of org.omegahat.Environment.Interpreter.Options

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.