Uses of Class
net.sf.jguiraffe.gui.builder.event.Modifiers
-
Packages that use Modifiers Package Description net.sf.jguiraffe.gui.builder.action Theaction
sub package of the builder contains interfaces and classes for dealing with actions and related objects during a builder operation.net.sf.jguiraffe.gui.builder.event The main package for events and event listeners definitions. -
-
Uses of Modifiers in net.sf.jguiraffe.gui.builder.action
Methods in net.sf.jguiraffe.gui.builder.action that return types with arguments of type Modifiers Modifier and Type Method Description Set<Modifiers>
Accelerator. getModifiers()
Returns a set with the modifiers set for this accelerator.Method parameters in net.sf.jguiraffe.gui.builder.action with type arguments of type Modifiers Modifier and Type Method Description static Accelerator
Accelerator. getInstance(Character key, Set<Modifiers> modifiers)
Returns anAccelerator
for the specified printable key and the (optional) modifiers.static Accelerator
Accelerator. getInstance(Integer keyCode, Set<Modifiers> modifiers)
Returns anAccelerator
for the specified platform-specific key code and the (optional) modifiers.static Accelerator
Accelerator. getInstance(Keys key, Set<Modifiers> modifiers)
Returns anAccelerator
for the specified special key and the (optional) modifiers. -
Uses of Modifiers in net.sf.jguiraffe.gui.builder.event
Methods in net.sf.jguiraffe.gui.builder.event that return Modifiers Modifier and Type Method Description static Modifiers
Modifiers. fromString(String s)
Tries to find aModifiers
constant for the specified string.static Modifiers
Modifiers. valueOf(String name)
Returns the enum constant of this type with the specified name.static Modifiers[]
Modifiers. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.sf.jguiraffe.gui.builder.event that return types with arguments of type Modifiers Modifier and Type Method Description Set<Modifiers>
FormMouseEvent. getModifiers()
Returns a set withModifiers
representing the special modifier keys that were pressed when the mouse event occurred.Constructor parameters in net.sf.jguiraffe.gui.builder.event with type arguments of type Modifiers Constructor Description FormMouseEvent(Object source, ComponentHandler<?> handler, String name, FormMouseEvent.Type t, int xp, int yp, int btn, Collection<Modifiers> mods)
Creates a new instance ofFormMouseEvent
and initializes all its properties.
-