Examples of SchemaEdge


Examples of org.openiaml.model.model.domain.SchemaEdge

    setTo(edge, to);
    return edge;
  }

  public SchemaEdge generatedSchemaEdge(GeneratesElements by, ContainsWires container, DomainSource from, DomainType to) throws InferenceException {
    SchemaEdge edge = (SchemaEdge) createElement( container, DomainPackage.eINSTANCE.getSchemaEdge(), ModelPackage.eINSTANCE.getContainsWires_SchemaEdges() );
    setGeneratedBy(edge, by);
    setValue(edge, DomainPackage.eINSTANCE.getSchemaEdge_From(), from);
    setValue(edge, DomainPackage.eINSTANCE.getSchemaEdge_To(), to);
    return edge;
  }
View Full Code Here

Examples of org.openiaml.model.model.domain.SchemaEdge

   * the given elements.
   *
   * @return The element found
   */
  public static SchemaEdge assertHasSchemaEdge(DomainSource from, DomainType to) throws JaxenException {
    SchemaEdge result = null;
    for (SchemaEdge edge : from.getOutSchemas()) {
      if (to.equals(edge.getTo())) {
        assertNull("Found two SchemaEdges: " + result, result);
        result = edge;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.