From: Benjamin B. <bg...@us...> - 2005-04-08 09:11:59
|
Update of /cvsroot/sblim/ecute/Plugin/com/ibm/ecute/UMLBuffer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32031/Plugin/com/ibm/ecute/UMLBuffer Modified Files: UMLBuffer.java Log Message: [ 1179045 ] Various issues in eCute4RSA Index: UMLBuffer.java =================================================================== RCS file: /cvsroot/sblim/ecute/Plugin/com/ibm/ecute/UMLBuffer/UMLBuffer.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- UMLBuffer.java 24 Mar 2005 09:10:44 -0000 1.6 +++ UMLBuffer.java 8 Apr 2005 09:11:16 -0000 1.7 @@ -109,7 +109,7 @@ lastMethod.AddParameter(theParameter); lastAddedElement = theParameter; } - public void AddAtribute(String dataType, String name, String defaultValue) { + public void AddAttribute(String dataType, String name, String defaultValue) { UMLAttribute theAttribute = new UMLAttribute(dataType, name, defaultValue); lastClass.addAttribute(theAttribute); @@ -542,7 +542,7 @@ void createAttributes(ArrayList attributes) throws Exception { for (int i = 0; i < attributes.size(); i++) { UMLAttribute theAtribute = (UMLAttribute) attributes.get(i); - UMLProgram.AddAtribute(theAtribute.dataType, theAtribute.name, + UMLProgram.AddAttribute(theAtribute.dataType, theAtribute.name, theAtribute.value); CreateQualifiers(theAtribute); if (Thread.currentThread().isInterrupted()) |