[Jsxe-cvs] SF.net SVN: jsxe: [1107] branches/jsxe2
Status: Inactive
Brought to you by:
ian_lewis
|
From: <ian...@us...> - 2006-08-07 19:50:59
|
Revision: 1107 Author: ian_lewis Date: 2006-08-07 12:50:51 -0700 (Mon, 07 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1107&view=rev Log Message: ----------- Removed the get and setStringProperty methods since they aren't needed Modified Paths: -------------- branches/jsxe2/Changelog branches/jsxe2/src/net/sourceforge/jsxe/dom2/XMLDocument.java Modified: branches/jsxe2/Changelog =================================================================== --- branches/jsxe2/Changelog 2006-08-05 21:41:13 UTC (rev 1106) +++ branches/jsxe2/Changelog 2006-08-07 19:50:51 UTC (rev 1107) @@ -1,3 +1,8 @@ +08/07/2006 Ian Lewis <Ian...@me...> + + * Removed get/setStringProperty methods from XMLDocument since they aren't + needed + 08/03/2006 Ian Lewis <Ian...@me...> * More porting of jEdit's VFS classes to jsXe Modified: branches/jsxe2/src/net/sourceforge/jsxe/dom2/XMLDocument.java =================================================================== --- branches/jsxe2/src/net/sourceforge/jsxe/dom2/XMLDocument.java 2006-08-05 21:41:13 UTC (rev 1106) +++ branches/jsxe2/src/net/sourceforge/jsxe/dom2/XMLDocument.java 2006-08-07 19:50:51 UTC (rev 1107) @@ -375,30 +375,6 @@ } }//}}} - //{{{ getStringProperty() method - /** - * Returns the value of a string property. This method is thread-safe. - * @param name The property name - */ - public String getStringProperty(String name) { - Object obj = getProperty(name); - if (obj != null) { - return obj.toString(); - } else { - return null; - } - } //}}} - - //{{{ setStringProperty() method - /** - * Sets a string property. - * @param name The property name - * @param value The value - */ - public void setStringProperty(String name, String value) { - setProperty(name,value); - } //}}} - //{{{ getBooleanProperty() method /** * Returns the value of a boolean property. This method is thread-safe. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |