querydataset1rowiterator.java

来自「我做的第一个java MIS项目」· Java 代码 · 共 98 行

JAVA
98
字号
package client;

import com.borland.dx.dataset.*;

public class QueryDataSet1RowIterator {
    RowIterator rowIterator = new RowIterator();
    public QueryDataSet1RowIterator() {
    }

    void bind(DataSet dataset) throws DataSetException {
        rowIterator.bind(dataset);
    }

    void bind(ReadRow readRow) throws DataSetException {
        rowIterator.bind(readRow);
    }

    void bind(ReadWriteRow readWriteRow) throws DataSetException {
        rowIterator.bind(readWriteRow);
    }

    void bind(RowIterator ri) throws DataSetException {
        rowIterator.bind(ri);
    }

    public void first() throws DataSetException {
        rowIterator.first();
    }

    public void last() throws DataSetException {
        rowIterator.last();
    }

    public void next() throws DataSetException {
        rowIterator.next();
    }

    public void prior() throws DataSetException {
        rowIterator.prior();
    }

    public int getCdid() throws DataSetException {
        return rowIterator.getInt("cdid");
    }

    public void setCdid(int value) throws DataSetException {
        rowIterator.setInt("cdid", value);
    }

    public boolean getCdexist() throws DataSetException {
        return rowIterator.getBoolean("cdexist");
    }

    public void setCdexist(boolean value) throws DataSetException {
        rowIterator.setBoolean("cdexist", value);
    }

    public String getCdname() throws DataSetException {
        return rowIterator.getString("cdname");
    }

    public void setCdname(String value) throws DataSetException {
        rowIterator.setString("cdname", value);
    }

    public String getCdtype() throws DataSetException {
        return rowIterator.getString("cdtype");
    }

    public void setCdtype(String value) throws DataSetException {
        rowIterator.setString("cdtype", value);
    }

    public String getCdmtype() throws DataSetException {
        return rowIterator.getString("cdmtype");
    }

    public void setCdmtype(String value) throws DataSetException {
        rowIterator.setString("cdmtype", value);
    }

    public String getCdactor() throws DataSetException {
        return rowIterator.getString("cdactor");
    }

    public void setCdactor(String value) throws DataSetException {
        rowIterator.setString("cdactor", value);
    }

    public String getCdnotes() throws DataSetException {
        return rowIterator.getString("cdnotes");
    }

    public void setCdnotes(String value) throws DataSetException {
        rowIterator.setString("cdnotes", value);
    }
}

⌨️ 快捷键说明

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