Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/option
In directory sc8-pr-cvs1:/tmp/cvs-serv16922
Modified Files:
IConfigInfo.java
Log Message:
Missed the interface for the new method: getBooleanValue
Index: IConfigInfo.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/option/IConfigInfo.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** IConfigInfo.java 15 Aug 2003 00:25:29 -0000 1.7
--- IConfigInfo.java 12 Sep 2003 00:59:15 -0000 1.8
***************
*** 171,173 ****
--- 171,182 ----
*/
public int getIntValue(String path);
+
+ /**
+ * Get the option value in the path of options as a boolean true/false. The path is
+ * specificed like a file path: /option/suboption/etc
+ *
+ * @param path
+ * @return value
+ */
+ public boolean getBooleanValue(String path);
}
|