232233234235236237238
property values parameterizing the manager and its options. */ public OmegaInterfaceManager(java.io.InputStream stream) { super(new Options(stream)); }
243244245246247248249
@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)); }
255256257258259260261
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)); }