browseriterator.java

来自「jetspeed源代码」· Java 代码 · 共 93 行

JAVA
93
字号
/*
 * Copyright 2000-2001,2004 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.jetspeed.portal.portlets.browser;

import java.util.Iterator;
import java.util.List;
import java.util.Comparator;
import java.io.Serializable;
/**
 * Browser Iterator Interface
 *
 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
 * @version $Id: BrowserIterator.java,v 1.7 2004/02/23 03:26:43 jford Exp $
 *
*/
public interface BrowserIterator extends Iterator, Comparator, Serializable
{

    /**
     * This method returns the index of the row to which the cursor is pointing at.
     *
     */
    public int getTop();
    /**
     * This method returns the window size.
     *
     */
    public int getWindowSize();
    /**
     * This method returns the last index of the row in the window displayed.
     *
     */
    public int getBottom();

    /**
     * This method points the cursor to the index provided.
     *
     * @param start Index to which cursor should point to
     */
    public void setTop(int start);

    /**
     * This method returns the result set vector.
     *
     */
    public List getResultSet();

    /**
     * This method returns the number of rows in the result set.
     *
     */
    public int getResultSetSize();

    /**
     * This method returns the List containg the column labels of the result set.
     *
     */
    public List getResultSetTitleList();

    /**
     * This method returns the List containg the Types of the columns the result set.
     *
     *@see java.sql.Types
     */
    public List getResultSetTypesList();

    /**
     * This method sorts the result set according to the value of the column as
     * specified by the parameter column name.
     * Changes the order of the result set vector. If it is called on the same
     * columnName more than once it toggles the ordering ie first it will be
     * ascending, then it will be descending, then ascending and so on.
     *
     *@param String sortColumnName
     */
    public void sort(String sortColumnName);

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?