You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/01/29 23:02:33 UTC

svn commit: r1065121 - in /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder: LinkedBeanPropertySetterBuilder.java LinkedRuleBuilder.java

Author: simonetripodi
Date: Sat Jan 29 22:02:33 2011
New Revision: 1065121

URL: http://svn.apache.org/viewvc?rev=1065121&view=rev
Log:
avoid method overloading method for beanPropertySetter(), propertyName specified via chained builder

Added:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java   (with props)
Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java

Added: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java?rev=1065121&view=auto
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java (added)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java Sat Jan 29 22:02:33 2011
@@ -0,0 +1,33 @@
+/* $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.commons.digester3.rulesbinder;
+
+/**
+ * Builder chained when invoking {@link LinkedRuleBuilder#beanPropertySetter()}.
+ */
+public interface LinkedBeanPropertySetterBuilder extends BackToLinkedRuleBuilder {
+
+    /**
+     * Sets the name of property to set.
+     *
+     * @param propertyName The name of property to set
+     * @return this builder instance
+     */
+    LinkedBeanPropertySetterBuilder ofPropertyName(String propertyName);
+
+}

Propchange: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedBeanPropertySetterBuilder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java?rev=1065121&r1=1065120&r2=1065121&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java Sat Jan 29 22:02:33 2011
@@ -36,14 +36,7 @@ public interface LinkedRuleBuilder {
      * Construct rule that automatically sets a property from the body text, taking the property
      * name the same as the current element.
      */
-    LinkedRuleBuilder beanPropertySetter();
-
-    /**
-     * Construct rule that sets the given property from the body text.
-     *
-     * @param propertyName The name of property to set.
-     */
-    LinkedRuleBuilder beanPropertySetter(String propertyName);
+    LinkedBeanPropertySetterBuilder beanPropertySetter();
 
     /**
      * Calls a method on an object on the stack (normally the top/parent object), passing arguments collected from