Package fr.imag.adele.apam.declarations.references.resources

Examples of fr.imag.adele.apam.declarations.references.resources.MessageReference


        encodedReference = encodedReference.substring(("{"+ComponentParser.INTERFACE+"}").length());
        return (!encodedReference.isEmpty()) ? new InterfaceReference(encodedReference) : new UnknownReference(new InterfaceReference("unknown"));
      }
      else if (encodedReference.startsWith("{"+ComponentParser.MESSAGE+"}")) {
        encodedReference = encodedReference.substring(("{"+ComponentParser.MESSAGE+"}").length());
        return (!encodedReference.isEmpty()) ? new MessageReference(encodedReference) : new UnknownReference(new MessageReference("unknown"));
      }
      else if (encodedReference.startsWith("{"+ComponentParser.PACKAGE+"}")) {
        encodedReference = encodedReference.substring(("{"+ComponentParser.PACKAGE+"}").length());
        return new PackageReference(encodedReference);
      }
View Full Code Here


      break;
  case itf:
      rr = new InterfaceReference(rr_name);
      break;
  case message:
      rr = new MessageReference(rr_name);
      break;
  case specification:
      rr = new SpecificationReference(rr_name);

      break;
View Full Code Here

TOP

Related Classes of fr.imag.adele.apam.declarations.references.resources.MessageReference

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.