Package org.eclipse.ecf.remoteservice

Examples of org.eclipse.ecf.remoteservice.RemoteServiceID


  public ID createInstance(Object[] parameters) throws IDCreateException {
    if (parameters == null || parameters.length != 2)
      throw new IDCreateException("Parameters incorrect for remote ID creation"); //$NON-NLS-1$
    try {
      return new RemoteServiceID(this, (ID) parameters[0], ((Long) parameters[1]).longValue());
    } catch (Exception e) {
      throw new IDCreateException("Exception creating remoteID", e); //$NON-NLS-1$
    }
  }
View Full Code Here


  public ID createInstance(Object[] parameters) throws IDCreateException {
    if (parameters == null || parameters.length != 2)
      throw new IDCreateException(
          "Parameters incorrect for remote ID creation"); //$NON-NLS-1$
    try {
      return new RemoteServiceID(this, (RienaID) parameters[0],
          ((Long) parameters[1]).longValue());
    } catch (Exception e) {
      throw new IDCreateException("Exception creating Riena remoteID", e); //$NON-NLS-1$
    }
  }
View Full Code Here

  public ID createInstance(Object[] parameters) throws IDCreateException {
    if (parameters == null || parameters.length != 2)
      throw new IDCreateException("Parameters incorrect for remote ID creation"); //$NON-NLS-1$
    try {
      return new RemoteServiceID(this, (ID) parameters[0], ((Long) parameters[1]).longValue());
    } catch (Exception e) {
      throw new IDCreateException("Exception creating remoteID", e); //$NON-NLS-1$
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.remoteservice.RemoteServiceID

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.