Author: bobtarling Date: 2011-04-14 13:13:49-0700 New Revision: 19241 Modified: trunk/src/argouml-core-notation/src/org/argouml/notation2/NameUmlNotation.java trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationLanguage.java trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationTextEvent.java
Log: Remove @override where we are actually implementing methods Modified: trunk/src/argouml-core-notation/src/org/argouml/notation2/NameUmlNotation.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-notation/src/org/argouml/notation2/NameUmlNotation.java?view=diff&pathrev=19241&r1=19240&r2=19241 ============================================================================== --- trunk/src/argouml-core-notation/src/org/argouml/notation2/NameUmlNotation.java (original) +++ trunk/src/argouml-core-notation/src/org/argouml/notation2/NameUmlNotation.java 2011-04-14 13:13:49-0700 @@ -29,17 +29,14 @@ notatedItem = item; } - @Override public Object getMetaType() { return notatedItem.getMetaType(); } - @Override public NotationType getNotationType() { return notatedItem.getNotationType(); } - @Override public void propertyChange(PropertyChangeEvent evt) { try { final Object owner = notatedItem.getOwner(); Modified: trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationLanguage.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationLanguage.java?view=diff&pathrev=19241&r1=19240&r2=19241 ============================================================================== --- trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationLanguage.java (original) +++ trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationLanguage.java 2011-04-14 13:13:49-0700 @@ -17,12 +17,10 @@ class UmlNotationLanguage implements NotationLanguage { - @Override public String getName() { return "UML"; } - @Override public NotationText createNotationText(NotatedItem item) { NameUmlNotation nt = new NameUmlNotation(item); @@ -31,5 +29,4 @@ return nt; } - } Modified: trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationTextEvent.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationTextEvent.java?view=diff&pathrev=19241&r1=19240&r2=19241 ============================================================================== --- trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationTextEvent.java (original) +++ trunk/src/argouml-core-notation/src/org/argouml/notation2/UmlNotationTextEvent.java 2011-04-14 13:13:49-0700 @@ -30,22 +30,19 @@ this.underlined = underlined; this.bold = bold; } - @Override + public String getText() { return text; } - @Override public boolean isUnderlined() { return underlined; } - @Override public boolean isItalic() { return italic; } - @Override public boolean isBold() { return bold; } ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2719898 To unsubscribe from this discussion, e-mail: [[email protected]].
