Package com.artemis.model

Examples of com.artemis.model.ComponentDependencyMatrix


    converter = FileOutputConverter.class,
    required = false)
  private File output = new File("matrix.html");
 
  void execute() {
    ComponentDependencyMatrix cdm =
      new ComponentDependencyMatrix(projectName, classRoot, output);
    cdm.process();
  }
View Full Code Here


  private String name;
 
  @Override
  public void execute() throws MojoExecutionException
  {
    ComponentDependencyMatrix matrix =
      new ComponentDependencyMatrix(name, classDirectory, new File(saveDirectory, "matrix.html"));
    matrix.process();
  }
View Full Code Here

TOP

Related Classes of com.artemis.model.ComponentDependencyMatrix

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.