Package org.eclipse.ecf.core.identity

Examples of org.eclipse.ecf.core.identity.IIDFactory


  public void setLongID(long longID) {
    this.longID = longID;
  }

  protected ID createIdentity() {
    IIDFactory idFactory = getIdFactory();
    return idFactory.createLongID(longID);
  }
View Full Code Here


  public void setStringID(String stringID) {
    this.stringID = stringID;
  }

  protected ID createIdentity() {
    IIDFactory idFactory = getIdFactory();
    return idFactory.createStringID(stringID);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.core.identity.IIDFactory

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.