Class LXGroup

All Implemented Interfaces:
LXComponent.Renamable, LXLoopTask, LXPath, LXPresetComponent, LXSerializable, LXOscComponent, LXParameterListener

public class LXGroup extends LXAbstractChannel
  • Field Details

  • Constructor Details

    • LXGroup

      public LXGroup(LX lx, int index)
  • Method Details

    • constructProfiler

      protected LXModulatorComponent.Profiler constructProfiler()
      Overrides:
      constructProfiler in class LXAbstractChannel
    • constructClip

      protected LXClip constructClip(int index)
      Specified by:
      constructClip in class LXBus
    • addChannel

      public LXGroup addChannel(LXChannel channel)
    • getLastChannel

      public LXChannel getLastChannel()
      Get the last channel in this group
      Returns:
      The last channel in this group
    • ungroup

      public void ungroup()
    • onParameterChanged

      public void onParameterChanged(LXParameter parameter)
      Description copied from class: LXComponent
      Subclasses are free to override this if desired. It will automatically fire for any listenable parameter that is registered with this component.
      Specified by:
      onParameterChanged in interface LXParameterListener
      Overrides:
      onParameterChanged in class LXAbstractChannel
      Parameters:
      parameter - Parameter that has a value change
    • dispose

      public void dispose()
      Description copied from class: LXComponent
      Invoked when a component is being removed from the system and will no longer be used at all. This unregisters the component and should free up any resources and parameter listeners. Ideally after this method is called the object should be eligible for garbage collection. Subclasses are generally expected to override this method to handle their particular cleanup work. They should also generally call super.dispose() at the appropriate time to perform the basic cleanup, which may need to happen either before or after cleaning up other objects.
      Overrides:
      dispose in class LXAbstractChannel