From: <fg...@us...> - 2009-03-12 11:23:20
|
Revision: 1083 http://openutils.svn.sourceforge.net/openutils/?rev=1083&view=rev Author: fgiust Date: 2009-03-12 11:23:07 +0000 (Thu, 12 Mar 2009) Log Message: ----------- missing @Override Modified Paths: -------------- trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/criterion/MatchMode.java Modified: trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/criterion/MatchMode.java =================================================================== --- trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/criterion/MatchMode.java 2009-03-12 11:17:41 UTC (rev 1082) +++ trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/criterion/MatchMode.java 2009-03-12 11:23:07 UTC (rev 1083) @@ -24,6 +24,7 @@ this.name = name; } + @Override public String toString() { return name; @@ -35,6 +36,7 @@ public static final MatchMode START = new MatchMode("START") { + @Override public String toMatchString(String pattern) { return pattern + '%'; @@ -47,6 +49,7 @@ public static final MatchMode END = new MatchMode("END") { + @Override public String toMatchString(String pattern) { return '%' + pattern; @@ -59,6 +62,7 @@ public static final MatchMode ANYWHERE = new MatchMode("ANYWHERE") { + @Override public String toMatchString(String pattern) { return '%' + pattern + '%'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |