Package javax.jdo

Examples of javax.jdo.JDOUnsupportedOptionException


    public Object jdoGetTransactionalObjectId() {
        return getPName();
    }

    public void jdoReplaceField(int fieldNumber) {
        throw new JDOUnsupportedOptionException();
    }
View Full Code Here


    /**
     * Adds all of the elements in the specified collection to this collection
     * (optional operation).
     */
    public boolean addAll(Collection c) {
        throw new JDOUnsupportedOptionException(
                "This method is not supported in this implementation");
    }
View Full Code Here

    public void jdoReplaceField(int fieldNumber) {
        throw new JDOUnsupportedOptionException();
    }

    public void jdoReplaceFields(int[] fieldNumbers) {
        throw new JDOUnsupportedOptionException();
    }
View Full Code Here

    public void jdoReplaceFields(int[] fieldNumbers) {
        throw new JDOUnsupportedOptionException();
    }

    public void jdoProvideField(int fieldNumber) {
        throw new JDOUnsupportedOptionException();
    }
View Full Code Here

    /**
     * Removes all of the elements from this collection
     * (optional operation).
     */
    public void clear() {
        throw new JDOUnsupportedOptionException(
                "This method is not supported in this implementation");
    }
View Full Code Here

    public void jdoProvideField(int fieldNumber) {
        throw new JDOUnsupportedOptionException();
    }

    public void jdoProvideFields(int[] fieldNumbers) {
        throw new JDOUnsupportedOptionException();
    }
View Full Code Here

    public void jdoProvideFields(int[] fieldNumbers) {
        throw new JDOUnsupportedOptionException();
    }

    public void jdoCopyFields(Object pc, int[] fieldNumbers) {
        throw new JDOUnsupportedOptionException();
    }
View Full Code Here

    /**
     * Compares the specified object with this collection for equality.
     */
    public boolean equals(Object o) {
        throw new JDOUnsupportedOptionException(
                "This method is not supported in this implementation");
    }
View Full Code Here

     */
    public boolean isEmpty() {
        try {
            return tc == null || tc.isEmpty();
        } catch (MedorException me) {
            throw new JDOUnsupportedOptionException(
                    "a MedorException has been catched",
                    new Exception[]{me});
        }
    }
View Full Code Here

    public Object jdoNewObjectIdInstance(String s) {
        return null;
    }

    public void jdoCopyKeyFieldsToObjectId(Object o) {
        throw new JDOUnsupportedOptionException();
    }
View Full Code Here

TOP

Related Classes of javax.jdo.JDOUnsupportedOptionException

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.