From: Benjamin B. <bg...@us...> - 2005-07-19 16:11:05
|
Update of /cvsroot/sblim/ecute/Plugin/com/ibm/ecute/UMLBuffer/UMLTree In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9740/Plugin/com/ibm/ecute/UMLBuffer/UMLTree Modified Files: UMLClass.java Log Message: Index: UMLClass.java =================================================================== RCS file: /cvsroot/sblim/ecute/Plugin/com/ibm/ecute/UMLBuffer/UMLTree/UMLClass.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- UMLClass.java 15 Jul 2005 13:43:39 -0000 1.6 +++ UMLClass.java 19 Jul 2005 16:10:49 -0000 1.7 @@ -49,7 +49,6 @@ private boolean isAssociation = false; private UMLRole role1 = null; private UMLRole role2 = null; - private boolean rolesTwisted = false; private Hashtable methods = new Hashtable(); private Hashtable attributes = new Hashtable(); @@ -140,18 +139,6 @@ return role2; } - public boolean getRolesTwisted(){ - return rolesTwisted; - } - - public void setRolesTwisted(){ - rolesTwisted = true; - } - - public void resetRolesTwisted(){ - rolesTwisted = false; - } - public void addMethod(UMLMethod method) { methods.put(method.getName(), method); } |