Package org.tuba.plugins.meta

Examples of org.tuba.plugins.meta.MetaArtefactRepresentation


  }

  private void collectArtefactRepresentations() {
    artefactRepresentations = new HashMap<String, MetaArtefactRepresentation>();
    for (IConfigurationElement element : getPlugins(IArtefactRepresentation.POINT_ID)) {
      MetaArtefactRepresentation representation = new MetaArtefactRepresentation(
          element);
      artefactRepresentations.put(representation.getId(), representation);
    }
  }
View Full Code Here

TOP

Related Classes of org.tuba.plugins.meta.MetaArtefactRepresentation

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.