Package com.antlersoft.odb

Examples of com.antlersoft.odb.ObjectDB


    }
    type=o.getClass().getName();
    description=o.toString();
    if (o instanceof Persistent)
    {
      ObjectDB db = ObjectDB.getObjectDB();
      objectKey = db.keyToString(db.getObjectKey(o));
    }
    else
      objectKey = "";
  }
View Full Code Here


      try
      {
        env.setLine( request.getText());
        SelectionSetExpression selection = env.getCurrentSelection();
        selection.clear();
        ObjectDB db = ObjectDB.getObjectDB();
        for (String s : request.getObjectKeys())
        {
          try {
            Object o = db.get(db.stringToKey(s));
            selection.add(o);
          }
          catch (ObjectStoreException ose)
          {
            // do nothing with bad selected value
View Full Code Here

TOP

Related Classes of com.antlersoft.odb.ObjectDB

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.