Package com.antlersoft.odb

Examples of com.antlersoft.odb.Persistent


    for ( Iterator i=entries.iterator(); i.hasNext();)
      ((UnitEntry)i.next()).clearIfObsolete( possible_clear);
    entries=null;
    for ( Iterator i=possible_clear.iterator(); i.hasNext();)
    {
      Persistent p=(Persistent)((ObjectRef)i.next()).getReferenced();
      if ( ! m_session.greaterThanOrEqualEntries( UnitEntry.ENTRY_INDEX_NAME,
        new ObjectRefKey(p)).isExactMatch())
        m_session.deleteObject( p);
    }
    m_session.commit();
View Full Code Here

TOP

Related Classes of com.antlersoft.odb.Persistent

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.