Package ssv.interaction.model

Examples of ssv.interaction.model.InteractionLauncher


  public static void main(String[] args) throws Exception {
    UntilInteractionFilter untilInteractionFilter = new UntilInteractionFilter("VisitorSymbolicEvaluator", "visitCtInvocation", 2);
    InteractionModelObserver modelObserver = getInteractionDiagramFactory().createInteractionModelObserver();
    modelObserver.setInstanceFilter(createInstanceFilter((args.length > 2) ? args[2] : null));
    modelObserver.setInteractionFilter(untilInteractionFilter);
    InteractionLauncher launcher = getInteractionModelFactory().createLauncher();
    launcher.getModelView().addModelObserver(modelObserver);
    launcher.run(args);
    System.out.println("done");
  }
View Full Code Here

TOP

Related Classes of ssv.interaction.model.InteractionLauncher

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.