commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/PathCallParamBuilder.java [53:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public PathCallParamBuilder ofIndex( final int paramIndex )
    {
        if ( paramIndex < 0 )
        {
            reportError( "callParamPath().ofIndex( int )", "negative index argument not allowed" );
        }

        this.paramIndex = paramIndex;
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/ObjectParamBuilder.java [71:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ObjectParamBuilder<T> ofIndex( final int paramIndex )
    {
        if ( paramIndex < 0 )
        {
            reportError( "objectParam( %s ).ofIndex( int )", "negative index argument not allowed" );
        }

        this.paramIndex = paramIndex;
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallParamBuilder.java [95:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public CallParamBuilder ofIndex( final int paramIndex )
    {
        if ( paramIndex < 0 )
        {
            reportError( "callParam().ofIndex( int )", "negative index argument not allowed" );
        }

        this.paramIndex = paramIndex;
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



