Package net.sourceforge.squirrel_sql.fw.id

Examples of net.sourceforge.squirrel_sql.fw.id.IHasIdentifier


     *
     * @param   id    Identifier of object to be removed.
     */
    void remove(IIdentifier id)
    {
      IHasIdentifier obj = get(id);
      if (obj != null)
      {
        _coll.remove(id);
        fireObjectRemoved(obj);
      }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.fw.id.IHasIdentifier

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.