Revision: 1687
          http://svn.sourceforge.net/spring-rich-c/?rev=1687&view=rev
Author:   jhoskens
Date:     2007-01-24 05:45:21 -0800 (Wed, 24 Jan 2007)

Log Message:
-----------
removed annotations that were 1.5 specific (@Override)

Modified Paths:
--------------
    
trunk/spring-richclient/support/src/main/java/org/springframework/rules/constraint/property/ConditionalPropertyConstraint.java

Modified: 
trunk/spring-richclient/support/src/main/java/org/springframework/rules/constraint/property/ConditionalPropertyConstraint.java
===================================================================
--- 
trunk/spring-richclient/support/src/main/java/org/springframework/rules/constraint/property/ConditionalPropertyConstraint.java
      2007-01-24 08:58:25 UTC (rev 1686)
+++ 
trunk/spring-richclient/support/src/main/java/org/springframework/rules/constraint/property/ConditionalPropertyConstraint.java
      2007-01-24 13:45:21 UTC (rev 1687)
@@ -96,12 +96,10 @@
                this.elseConstraint = elseConstraint;
        }
 
-       @Override
        public boolean isCompoundRule() {
                return true;
        }
 
-       @Override
        public boolean isDependentOn(String propertyName) {
                if (elseConstraint == null)
                        return ifConstraint.isDependentOn(propertyName) || 
thenConstraint.isDependentOn(propertyName);
@@ -110,7 +108,6 @@
                                || elseConstraint.isDependentOn(propertyName);
        }
 
-       @Override
        protected boolean test(PropertyAccessStrategy 
domainObjectAccessStrategy) {
                if (ifConstraint.test(domainObjectAccessStrategy))
                        return thenConstraint.test(domainObjectAccessStrategy);


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
spring-rich-c-cvs mailing list
spring-rich-c-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spring-rich-c-cvs

Reply via email to