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.BooleangetEnvelope()java.lang.BooleangetExactmis()java.lang.BooleangetFringe()java.lang.BooleangetModulation()java.lang.StringgetName()has to be implemented in order to return the name of the command (keyword);java.lang.BooleangetNocavity()java.util.List<Parameter>getParameters()this may be overridden if the command has parameters.java.lang.BooleangetRadiation()java.lang.BooleangetStochastic()java.lang.BooleangetTime()java.lang.BooleangetTotalpath()voidsetEnvelope(java.lang.Boolean envelope)voidsetExactmis(java.lang.Boolean exactmis)voidsetFringe(java.lang.Boolean fringe)voidsetModulation(java.lang.Boolean modulation)voidsetNocavity(java.lang.Boolean nocavity)voidsetRadiation(java.lang.Boolean radiation)voidsetStochastic(java.lang.Boolean stochastic)voidsetTime(java.lang.Boolean time)voidsetTotalpath(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:Commandhas 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:AbstractCommandthis may be overridden if the command has parameters.- Specified by:
getParametersin interfaceCommand- Overrides:
getParametersin 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)
-
-