Package org.openiaml.docs.modeldoc

Examples of org.openiaml.docs.modeldoc.ImplementationNote


      EMFClass target, Reference reference) {
   
    if (name.equals("@implementation")) {
     
      // make an implementation semantics link
      ImplementationNote note = factory.createImplementationNote();
      note.setDescription(description);
      note.setReference(reference);
     
      // add it to the EMFclass
      target.getImplementationNotes().add(note);
     
    }
View Full Code Here

TOP

Related Classes of org.openiaml.docs.modeldoc.ImplementationNote

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.