Class SetEqual
- java.lang.Object
-
- cern.accsoft.steering.jmad.kernel.AbstractJMadExecutable
-
- cern.accsoft.steering.jmad.kernel.cmd.SetEqual
-
- All Implemented Interfaces:
Command
,JMadExecutable
public class SetEqual extends AbstractJMadExecutable implements Command
-
-
Constructor Summary
Constructors Constructor Description SetEqual(java.lang.String valueName, java.lang.Double value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
compose()
composes the final command and returns it as String.java.lang.String
getName()
has to be implemented in order to return the name of the command (keyword);java.util.List<Parameter>
getParameters()
has to be implemented in subclass in order to return the ArrayList of parameters of the command.-
Methods inherited from class cern.accsoft.steering.jmad.kernel.AbstractJMadExecutable
getOutputFile, getResultType, setOutputFile
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface cern.accsoft.steering.jmad.kernel.JMadExecutable
getOutputFile, getResultType, setOutputFile
-
-
-
-
Method Detail
-
compose
public java.lang.String compose()
Description copied from interface:Command
composes the final command and returns it as String.- Specified by:
compose
in interfaceCommand
- Specified by:
compose
in interfaceJMadExecutable
- Returns:
- the total Command-String.
-
getName
public java.lang.String getName()
Description copied from interface:Command
has to be implemented in order to return the name of the command (keyword);
-
getParameters
public java.util.List<Parameter> getParameters()
Description copied from interface:Command
has to be implemented in subclass in order to return the ArrayList of parameters of the command.- Specified by:
getParameters
in interfaceCommand
- Returns:
- all the parameter for the command
-
-