Package org.jamesii.core.model.formalism

Examples of org.jamesii.core.model.formalism.Formalism


    // load the language and factory dependant messages into the
    // general
    // messageTable
    // TODO (general) loadLanguage (loadedFactory+".po");
    if (loadedFactory instanceof ModelFactory) {
      Formalism form = ((ModelFactory) loadedFactory).getFormalism();
      registerFormalism(form.getIdent(), form);
    }

    // Register factory information
    factoryInfo.put(loadedFactory.getClass().getName(), facInfo);
    factoryNameMap.put(loadedFactory.getClass().getCanonicalName(),
View Full Code Here


    return null;
  }

  @Override
  public Formalism getFormalism() {
    return new Formalism(
        "SASFTEST",
        "ASFTEST",
        "SASF Testing Formalism",
        "Artifial models for large-scale testing of simulation algorithm selection framework.",
        TimeBase.DISCRETE, SystemSpecification.DISCRETE, TimeProgress.EVENT);
View Full Code Here

  @Override
  public String toString() {
    StringBuilder result = new StringBuilder(super.toString());

    Formalism f = getFormalism();
    result.append("\n ");
    result.append(f.getAcronym());
    result.append(" (");
    result.append(f.getName());
    result.append(")");
    result.append("\n ");
    result.append(f.getComment());

    result.append("\n Model classes interfaces");
    if (getSupportedInterfaces() != null) {
      for (Class<?> c : getSupportedInterfaces()) {
        result.append("\n  - ");
View Full Code Here

TOP

Related Classes of org.jamesii.core.model.formalism.Formalism

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.