Package org.objectweb.jorm.api

Examples of org.objectweb.jorm.api.PIndexedElem


    public boolean contains(Object o, int index) {
        tmpelem.setElement(o);
        tmpelem.setIndex(new Integer(index));
        Iterator it = elements.iterator();
        while (it.hasNext()) {
            PIndexedElem e = (PIndexedElem) it.next();
            if (e.equals(tmpelem) && e.getElemStatus() != PIndexedElem.ELEM_DELETED) {
        if (Debug.ON && getLogger() != null) {
          logger.log(BasicLevel.DEBUG, "contains(): yes");
        }
                return true;
            }
View Full Code Here


    public boolean contains(Object o) {
        tmpelem.setElement(o);
        Iterator it = elements.iterator();
        while (it.hasNext()) {
            PIndexedElem e = (PIndexedElem) it.next();
            if (e.equals(tmpelem) && e.getElemStatus() != PIndexedElem.ELEM_DELETED) {
        if (Debug.ON && getLogger() != null) {
          logger.log(BasicLevel.DEBUG, "contains(): yes");
        }
                return true;
            }
View Full Code Here

TOP

Related Classes of org.objectweb.jorm.api.PIndexedElem

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.