Class PtcSetSwitchCommand
- java.lang.Object
-
- cern.accsoft.steering.jmad.kernel.AbstractJMadExecutable
-
- cern.accsoft.steering.jmad.kernel.cmd.AbstractCommand
-
- cern.accsoft.steering.jmad.kernel.cmd.ptc.PtcSetSwitchCommand
-
- All Implemented Interfaces:
Command
,JMadExecutable
public class PtcSetSwitchCommand extends AbstractCommand
This class represents the madx-command to initialize the ptc-universe
-
-
Constructor Summary
Constructors Constructor Description PtcSetSwitchCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Boolean
getEnvelope()
java.lang.Boolean
getExactmis()
java.lang.Boolean
getFringe()
java.lang.Boolean
getModulation()
java.lang.String
getName()
has to be implemented in order to return the name of the command (keyword);java.lang.Boolean
getNocavity()
java.util.List<Parameter>
getParameters()
this may be overridden if the command has parameters.java.lang.Boolean
getRadiation()
java.lang.Boolean
getStochastic()
java.lang.Boolean
getTime()
java.lang.Boolean
getTotalpath()
void
setEnvelope(java.lang.Boolean envelope)
void
setExactmis(java.lang.Boolean exactmis)
void
setFringe(java.lang.Boolean fringe)
void
setModulation(java.lang.Boolean modulation)
void
setNocavity(java.lang.Boolean nocavity)
void
setRadiation(java.lang.Boolean radiation)
void
setStochastic(java.lang.Boolean stochastic)
void
setTime(java.lang.Boolean time)
void
setTotalpath(java.lang.Boolean totalpath)
-
Methods inherited from class cern.accsoft.steering.jmad.kernel.cmd.AbstractCommand
compose, toString
-
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, wait, wait, wait
-
Methods inherited from interface cern.accsoft.steering.jmad.kernel.JMadExecutable
getOutputFile, getResultType, setOutputFile
-
-
-
-
Method Detail
-
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);- Returns:
- the name of the command (MadX keyword)
-
getParameters
public java.util.List<Parameter> getParameters()
Description copied from class:AbstractCommand
this may be overridden if the command has parameters.- Specified by:
getParameters
in interfaceCommand
- Overrides:
getParameters
in classAbstractCommand
- Returns:
- all the parameter for the command
-
getTime
public java.lang.Boolean getTime()
-
setTime
public void setTime(java.lang.Boolean time)
-
getFringe
public java.lang.Boolean getFringe()
-
setFringe
public void setFringe(java.lang.Boolean fringe)
-
getNocavity
public java.lang.Boolean getNocavity()
-
setNocavity
public void setNocavity(java.lang.Boolean nocavity)
-
getExactmis
public java.lang.Boolean getExactmis()
-
setExactmis
public void setExactmis(java.lang.Boolean exactmis)
-
getTotalpath
public java.lang.Boolean getTotalpath()
-
setTotalpath
public void setTotalpath(java.lang.Boolean totalpath)
-
getRadiation
public java.lang.Boolean getRadiation()
-
setRadiation
public void setRadiation(java.lang.Boolean radiation)
-
getEnvelope
public java.lang.Boolean getEnvelope()
-
setEnvelope
public void setEnvelope(java.lang.Boolean envelope)
-
getStochastic
public java.lang.Boolean getStochastic()
-
setStochastic
public void setStochastic(java.lang.Boolean stochastic)
-
getModulation
public java.lang.Boolean getModulation()
-
setModulation
public void setModulation(java.lang.Boolean modulation)
-
-