Uses of Interface
sky.monome.behavior.factory.BehaviorFactory

Packages that use BehaviorFactory
sky.monome Main package of SkyMonome library. 
sky.monome.behavior Package of all behaviors. 
sky.monome.behavior.factory Package of all behavior factories 
 

Uses of BehaviorFactory in sky.monome
 

Constructors in sky.monome with parameters of type BehaviorFactory
LedButtonCouple(java.lang.String name, Container container, int x, int y, BehaviorFactory behaviorFactory)
          Deprecated. Since SkyMonome v1.2, all components register themselves inside their container, so you don't need to specify the container by calling this constructor.
LedButtonCouple(java.lang.String name, int x, int y, BehaviorFactory behaviorFactory)
          Constructs a led/button couple with the specified name, specified coordinates and the specified behavior factory.
LedButtonGroup(java.lang.String name, Container container, int x, int y, int width, int height, BehaviorFactory behaviorFactory)
          Deprecated. Since SkyMonome v1.2, all components register themselves inside their container, so you don't need to specify the container by calling this constructor.
LedButtonGroup(java.lang.String name, int x, int y, int width, int height, BehaviorFactory behaviorFactory)
          Constructs a led/button group with the specified name, specified coordinates and dimensions and the specified behavior factory.
 

Uses of BehaviorFactory in sky.monome.behavior
 

Constructors in sky.monome.behavior with parameters of type BehaviorFactory
Pad.PadGroup(BehaviorFactory behaviorFactory)
          Constructs a pad group with the specified behavior factory.
 

Uses of BehaviorFactory in sky.monome.behavior.factory
 

Classes in sky.monome.behavior.factory that implement BehaviorFactory
 class GenericBehaviorFactory
          Generic behavior factory which can produce serially behaviors of the class specified at construction.
 class MemberFactory
          Specialized behavior factory that produces exclusively members of groups of buttons.