tapestry-examples/VlibBeans/src/java/org/apache/tapestry/vlib/ejb/Person.java [48:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Person(Object[] columns)
    {
        if (columns == null)
            throw new IllegalArgumentException("Must provide a non-null columns.");

        if (columns.length != NUM_COLUMNS)
            throw new IllegalArgumentException("Wrong number of columns for a Person.");

        this._columns = new Object[NUM_COLUMNS];
        System.arraycopy(columns, 0, this._columns, 0, NUM_COLUMNS);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tapestry-examples/VlibBeans/src/java/org/apache/tapestry/vlib/ejb/Book.java [88:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Book(Object[] columns)
    {
        if (columns == null)
            throw new IllegalArgumentException("Must provide a non-null columns.");

        if (columns.length != NUM_COLUMNS)
            throw new IllegalArgumentException("Wrong number of columns for a Book.");

        this._columns = new Object[NUM_COLUMNS];
        System.arraycopy(columns, 0, this._columns, 0, NUM_COLUMNS);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



