Package org.apache.harmony.luni.util

Examples of org.apache.harmony.luni.util.NotImplementedException


    public void rollback() throws SQLException {
        throw new NotImplementedException();
    }

    public void rollback(Savepoint s) throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here


        throw new NotImplementedException();
    }

    public void rowSetPopulated(RowSetEvent event, int numRows)
            throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

            throws SQLException {
        throw new NotImplementedException();
    }

    public void setKeyColumns(int[] keys) throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public void setMetaData(RowSetMetaData md) throws SQLException {
        this.meta = md;
    }

    public void setOriginalRow() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public int size() {
        return rows.size();
    }

    public Collection<?> toCollection() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public Collection<?> toCollection() throws SQLException {
        throw new NotImplementedException();
    }

    public Collection<?> toCollection(int column) throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public Collection<?> toCollection(int column) throws SQLException {
        throw new NotImplementedException();
    }

    public Collection<?> toCollection(String column) throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public Collection<?> toCollection(String column) throws SQLException {
        throw new NotImplementedException();
    }

    public void undoDelete() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public void undoDelete() throws SQLException {
        throw new NotImplementedException();
    }

    public void undoInsert() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public void undoInsert() throws SQLException {
        throw new NotImplementedException();
    }

    public void undoUpdate() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

TOP

Related Classes of org.apache.harmony.luni.util.NotImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.