Class ControlSound
java.lang.Object
org.opensourcephysics.ejs.control.ControlElement
org.opensourcephysics.ejs.control.swing.ControlSwingElement
org.opensourcephysics.ejs.control.swing.ControlCheckBox
org.opensourcephysics.ejs.control.swing.ControlSound
An element to play sound according to the state of an internal
variable. The element does not change this variable
-
Field Summary
Fields inherited from class org.opensourcephysics.ejs.control.swing.ControlCheckBox
checkboxFields inherited from class org.opensourcephysics.ejs.control.swing.ControlSwingElement
ACTION_OFF, ACTION_ON, ACTION_PRESS, BACKGROUND, ENABLED, FONT, FOREGROUND, myVisual, NAME, PARENT, POSITION, SIZE, TOOLTIP, VISIBLEFields inherited from class org.opensourcephysics.ejs.control.ControlElement
ACTION, isUnderEjs, METHOD_FOR_VARIABLE, METHOD_TRIGGER, myGroup, myObject, myPropertiesTable, VARIABLE_CHANGED -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddestroy()Clears any trace of myself (specially in the group)getPropertyInfo(String _property) Returns information about a given property.Returns the list of all properties that can be set for this ControlElement.getValue(int _index) Gets the value of any internal variable.voidplay()voidsetAudioClip(String _codebase, String _audioFile) voidsetDefaultValue(int _index) voidSets the value of the registered variables.voidstop()Methods inherited from class org.opensourcephysics.ejs.control.swing.ControlCheckBox
createVisual, resetMethods inherited from class org.opensourcephysics.ejs.control.swing.ControlSwingElement
getComponent, getIcon, getVisual, parseConstantMethods inherited from class org.opensourcephysics.ejs.control.ControlElement
addAction, addAction, addAction, getGroup, getObject, getProperty, getSimulation, implementsProperty, initialize, invokeActions, invokeActions, isActive, propertyIsTypeOf, propertyType, removeAction, removeAction, setActive, setGroup, setProperties, setProperty, toString, variableChanged, variableChangedDoNotUpdate, variablePropertiesClear, variablesChanged
-
Constructor Details
-
ControlSound
Constructor ControlSound- Parameters:
_visual-
-
-
Method Details
-
setAudioClip
-
destroy
public void destroy()Description copied from class:ControlElementClears any trace of myself (specially in the group)- Overrides:
destroyin classControlElement
-
play
public void play() -
stop
public void stop() -
getPropertyList
Description copied from class:ControlSwingElementReturns the list of all properties that can be set for this ControlElement. Subclasses that add properties should extend this table. Order is crucial here: Both for the presentation in an editor (f.i. ViewElement) and for the setValue() method.- Overrides:
getPropertyListin classControlCheckBox
-
getPropertyInfo
Description copied from class:ControlSwingElementReturns information about a given property. Subclasses that add properties should extend this table.- The first keyword is ALWAYS the type.
- The keyword CONSTANT applies to properties that can not be changed using the setValue() methods
- The keyword BASIC is used by Ejs to group properties to the left hand side of the property editor
- The keyword HIDDEN is used by Ejs so that it does not display an entry in the editor field
- Overrides:
getPropertyInfoin classControlCheckBox
-
setValue
Description copied from class:ControlSwingElementSets the value of the registered variables. Subclasses with internal values should extend this- Overrides:
setValuein classControlCheckBox- Parameters:
_index- A keyword index that distinguishes among variables_value- The object holding the value for the variable.
-
setDefaultValue
public void setDefaultValue(int _index) - Overrides:
setDefaultValuein classControlCheckBox
-
getValue
Description copied from class:ControlSwingElementGets the value of any internal variable. Subclasses with internal values should extend this- Overrides:
getValuein classControlCheckBox- Parameters:
_index- A keyword index that distinguishes among variables- Returns:
- Value _value The object holding the value for the variable.
-