From: Xuan B. <med...@us...> - 2008-01-23 21:27:03
|
Update of /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/tmdm/tm4j1 In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25579/src/org/tm4j/topicmap/tmdm/tm4j1 Modified Files: ScopedObjectImpl.java Log Message: Implement ScopedObjectImpl.setScope(). Index: ScopedObjectImpl.java =================================================================== RCS file: /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/tmdm/tm4j1/ScopedObjectImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ScopedObjectImpl.java 21 Jan 2008 11:13:45 -0000 1.1 --- ScopedObjectImpl.java 23 Jan 2008 21:27:07 -0000 1.2 *************** *** 57,61 **** */ public void setScope(Topic[] scopingTopics) throws PropertyVetoException { ! throw new UnsupportedOperationException(); } --- 57,61 ---- */ public void setScope(Topic[] scopingTopics) throws PropertyVetoException { ! getRepresentedObject().replaceScope(getContainer().convertToInternalScope(scopingTopics)); } |