Examples of ElementInvalid


Examples of org.omg.CosCollection.ElementInvalid

    /* ------------------------------------------------------------------------- */
    public synchronized  void replace_first_element(Any element) throws ElementInvalid,EmptyCollection{
        try {
            replace_element_at_position( 0, element );
        } catch ( PositionInvalid e ){
            throw new ElementInvalid( ElementInvalidReason.positioning_property_invalid );
        }
    }
View Full Code Here

Examples of org.omg.CosCollection.ElementInvalid

            throw new EmptyCollection();
        }
        try {
            replace_element_at_position( data.size()-1, element );
        } catch ( PositionInvalid e ){
            throw new ElementInvalid( ElementInvalidReason.positioning_property_invalid );
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.