You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2008/05/16 18:01:57 UTC

svn commit: r657113 [2/2] - in /tapestry/tapestry5/trunk: tapestry-annotations/src/main/java/org/apache/tapestry/ioc/annotation/ tapestry-annotations/src/main/java/org/apache/tapestry/ioc/annotations/ tapestry-core/src/main/java/org/apache/tapestry/ann...

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Match.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Match.java?rev=657113&r1=647587&r2=657113&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Match.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Match.java Fri May 16 09:01:55 2008
@@ -1,18 +1,18 @@
-// Copyright 2006 The Apache Software Foundation
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package org.apache.tapestry.ioc.annotations;
+// Copyright 2006 The Apache Software Foundation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package org.apache.tapestry.ioc.annotation;
 
 import java.lang.annotation.Documented;
 import static java.lang.annotation.ElementType.METHOD;
@@ -21,17 +21,15 @@
 import java.lang.annotation.Target;
 
 /**
- * Optional, but typically used, annotation for service decorator methods, used to define which
- * services the decorator applies to. This annotation defines a number of <em>patterns</em> that
- * allow services across multiple modules to be selected. A decorator is applied to a service if any
- * of its patterns match the service.
+ * Optional, but typically used, annotation for service decorator methods, used to define which services the decorator
+ * applies to. This annotation defines a number of <em>patterns</em> that allow services across multiple modules to be
+ * selected. A decorator is applied to a service if any of its patterns match the service.
  * <p/>
  * TODO: Describe pattern glob-match syntax
  * <p/>
- * When the Match annotation is not supplied, then the decorator only applies to a single service:
- * the service whose id matches the decorators id; that is, method <code>decorateMyService()</code>
- * would decorate only the service provided by the <code>buildMyService()</code> method, within
- * the same module.
+ * When the Match annotation is not supplied, then the decorator only applies to a single service: the service whose id
+ * matches the decorators id; that is, method <code>decorateMyService()</code> would decorate only the service provided
+ * by the <code>buildMyService()</code> method, within the same module.
  */
 @Target(METHOD)
 @Retention(RUNTIME)
@@ -40,9 +38,8 @@
 {
 
     /**
-     * Defines a list of patterns matched against potential service ids to identify to which
-     * services the decorator applies. A decorator is applied if <em>any</em> of the patterns
-     * match.
+     * Defines a list of patterns matched against potential service ids to identify to which services the decorator
+     * applies. A decorator is applied if <em>any</em> of the patterns match.
      */
     String[] value();
 }

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Order.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Order.java?rev=657113&r1=647587&r2=657113&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Order.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Order.java Fri May 16 09:01:55 2008
@@ -1,18 +1,18 @@
-// Copyright 2006 The Apache Software Foundation
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package org.apache.tapestry.ioc.annotations;
+// Copyright 2006 The Apache Software Foundation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package org.apache.tapestry.ioc.annotation;
 
 import java.lang.annotation.Documented;
 import static java.lang.annotation.ElementType.METHOD;
@@ -21,8 +21,8 @@
 import java.lang.annotation.Target;
 
 /**
- * Used with a service decorator method to control the order in which decorations occur. Identifies
- * other decorators which should occur before the annotated decorator.
+ * Used with a service decorator method to control the order in which decorations occur. Identifies other decorators
+ * which should occur before the annotated decorator.
  *
  * @see org.apache.tapestry.ioc.def.DecoratorDef
  */

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Scope.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Scope.java?rev=657113&r1=647587&r2=657113&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Scope.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/Scope.java Fri May 16 09:01:55 2008
@@ -12,7 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-package org.apache.tapestry.ioc.annotations;
+package org.apache.tapestry.ioc.annotation;
 
 import org.apache.tapestry.ioc.ServiceBinder;
 import org.apache.tapestry.ioc.ServiceLifecycle;
@@ -37,7 +37,7 @@
  * the {@link ServiceBinder}.
  */
 @Target(
-        {TYPE, METHOD})
+        { TYPE, METHOD })
 @Retention(RUNTIME)
 @Documented
 public @interface Scope

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/SubModule.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/SubModule.java?rev=657113&r1=647587&r2=657113&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/SubModule.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry/ioc/annotation/SubModule.java Fri May 16 09:01:55 2008
@@ -1,18 +1,18 @@
-// Copyright 2006 The Apache Software Foundation
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package org.apache.tapestry.ioc.annotations;
+// Copyright 2006 The Apache Software Foundation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package org.apache.tapestry.ioc.annotation;
 
 import java.lang.annotation.Documented;
 import static java.lang.annotation.ElementType.TYPE;
@@ -21,8 +21,8 @@
 import java.lang.annotation.Target;
 
 /**
- * Attached to a module class, this annotation identifies other module classes that should also be
- * added to the Registry. This is often easier than updating the JAR Manifest.
+ * Attached to a module class, this annotation identifies other module classes that should also be added to the
+ * Registry. This is often easier than updating the JAR Manifest.
  */
 @Target(TYPE)
 @Retention(RUNTIME)