package de.ugoe.cs.eventbench.commands; import java.security.InvalidParameterException; import java.util.List; import de.ugoe.cs.eventbench.data.GlobalDataContainer; import de.ugoe.cs.eventbench.models.IDotCompatible; import de.ugoe.cs.util.console.Command; import de.ugoe.cs.util.console.Console; /** *

* Command that prints a dot representation of a model (if supported) to the * console. *

* * @author Steffen Herbold * @version 1.0 */ public class CMDprintDot implements Command { /* * (non-Javadoc) * * @see de.ugoe.cs.util.console.Command#help() */ @Override public void help() { Console.println("Usage: printDot "); } /* * (non-Javadoc) * * @see de.ugoe.cs.util.console.Command#run(java.util.List) */ @Override public void run(List parameters) { String modelname = ""; try { modelname = (String) parameters.get(0); } catch (Exception e) { throw new InvalidParameterException(); } IDotCompatible model = null; Object dataObject = GlobalDataContainer.getInstance() .getData(modelname); if (dataObject == null) { Console.println("Model " + modelname + "not found in storage."); return; } if (!(dataObject instanceof IDotCompatible)) { Console.println("Object " + modelname + " does not implement IDotCompatible!"); return; } model = (IDotCompatible) dataObject; Console.println(model.getDotRepresentation()); } }