Package com.volantis.shared.inhibitor

Examples of com.volantis.shared.inhibitor.Inhibitor


     * @param element The object which is being tested.
     * @return an immutable instance of the provided element if the specified object is
     *         allowed in this Set.
     */
    protected Object checkElement(Object element) {
        Inhibitor object = (Inhibitor) super.checkElement(element);
        return object.createImmutable();
    }
View Full Code Here


     * @param element The object which is being tested.
     * @return an immutable instance of the provided element if the specified object is
     *         allowed in this list.
     */
    protected Object checkElement(Object element) {
        Inhibitor object = (Inhibitor) super.checkElement(element);
        return object.createImmutable();
    }
View Full Code Here

TOP

Related Classes of com.volantis.shared.inhibitor.Inhibitor

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.