From: Xuan B. <med...@us...> - 2008-01-22 20:12:13
|
Update of /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/tmdm/tm4j1 In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28159/src/org/tm4j/topicmap/tmdm/tm4j1 Modified Files: TopicMapObjectImpl.java Log Message: Implement TopicMapObjectImpl.destroy() legacy method. Index: TopicMapObjectImpl.java =================================================================== RCS file: /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/tmdm/tm4j1/TopicMapObjectImpl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TopicMapObjectImpl.java 21 Jan 2008 19:21:15 -0000 1.2 --- TopicMapObjectImpl.java 22 Jan 2008 20:12:15 -0000 1.3 *************** *** 365,371 **** * used, the object or its children may or may not have been modified. */ ! public void destroy() ! throws IntegrityViolationException, PropertyVetoException { ! throw new UnsupportedOperationException(); } --- 365,370 ---- * used, the object or its children may or may not have been modified. */ ! public void destroy() throws IntegrityViolationException, PropertyVetoException { ! getRepresentedObject().remove(); } |