class AudioEffect
A class used for audio effects, all audio effects related classes inherit from this class.
public class AudioEffect
— Constructors (1) —
| Constructor | Description |
|---|
| AudioEffect(String tittle) | Creates a new AudioEffect with the component name defined to be "tittle" argument. |
— Methods (2) —
| Name | Description |
|---|
| String getTittle() | Returns the current name of the component (components that inherit this class). |
| void setTittle(String tittle) | Sets the current name of the component (components that inherit this class) to be "tittle" argument. |