Author: simonetripodi
Date: Sat Jan 29 22:14:02 2011
New Revision: 1065126

URL: http://svn.apache.org/viewvc?rev=1065126&view=rev
Log:
first checkin of LinkedPathCallParamBuilder
specified the paramIndex in the builder, so impl can assume 0 by default

Added:
    
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedPathCallParamBuilder.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/LinkedPathCallParamBuilder.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedPathCallParamBuilder.java?rev=1065126&view=auto
==============================================================================
--- 
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedPathCallParamBuilder.java
 (added)
+++ 
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedPathCallParamBuilder.java
 Sat Jan 29 22:14:02 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#callParam(int)}.
+ */
+public interface LinkedPathCallParamBuilder extends BackToLinkedRuleBuilder {
+
+    /**
+     * Sets the zero-relative parameter number.
+     *
+     * @param paramIndex The zero-relative parameter number
+     * @return this builder instance
+     */
+    LinkedPathCallParamBuilder ofIndex(int paramIndex);
+
+}

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

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

Propchange: 
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedPathCallParamBuilder.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=1065126&r1=1065125&r2=1065126&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:14:02 2011
@@ -53,10 +53,8 @@ public interface LinkedRuleBuilder {
 
     /**
      * Construct a "call parameter" rule that will save the body text of this 
element as the parameter value.
-     *
-     * @param paramIndex The zero-relative parameter number
      */
-    BackToLinkedRuleBuilder callParamPath(int paramIndex);
+    LinkedPathCallParamBuilder callParamPath();
 
     /**
      * Uses an {@link ObjectCreationFactory} to create a new object which it 
pushes onto the object stack.


Reply via email to