List of usage examples for weka.core Option setOptionsForHierarchy
public static void setOptionsForHierarchy(String[] options, Object target, Class<?> oldestAncestorClazz)
From source file:affective.core.EmbeddingHandler.java
License:Open Source License
/** * Parses the options for this object./* www.ja v a 2s. c o m*/ * * @param options * the options to use * @throws Exception * if setting of options fails */ public void setOptions(String[] options) throws Exception { Option.setOptionsForHierarchy(options, this, this.getClass().getSuperclass()); }