Uses of Class
com.incrediblesoft.redjey.Component

Packages that use Component
com.incrediblesoft.redjey   
com.incrediblesoft.redjey.demo   
com.incrediblesoft.redjey.event   
 

Uses of Component in com.incrediblesoft.redjey
 

Subclasses of Component in com.incrediblesoft.redjey
 class Button
           
 class Container
           
 class Frame
           
 class ImageItem
           
 class Label
           
 class Menu
           
 class MenuBar
           
 class MenuItem
           
 class PopupMenu
           
 class RadioButton
           
 class ScrollBar
           
 class ScrollPane
           
 class TextComponent
           
 class TextField
           
 class TextPane
           
 class Window
           
 

Methods in com.incrediblesoft.redjey that return Component
 Component Container.add(Component c)
          Adds specified component to this container
 Component Container.getComponent(int index)
          Returns component at specified index
 Component Container.getComponentAt(int x, int y, boolean deepSearch)
          Returns component located under the x,y position in this container coordinate system.
 Component Frame.getHeader()
           
 Component Component.getParent()
          Returns component's parent
 Component PopupMenu.getRoot()
           
 Component MenuItem.getRoot()
           
 Component ScrollPane.getView()
          Returns the view component
 Component Container.insertAt(Component c, int index)
          Inserts component at specified index
 Component Component.setAlignment(int anchor)
          Sets component alignment hints.
 

Methods in com.incrediblesoft.redjey with parameters of type Component
 Component Container.add(Component c)
          Adds specified component to this container
 int Container.indexOf(Component c)
          Returns the index of specified component within this container
 Component Container.insertAt(Component c, int index)
          Inserts component at specified index
 void Container.remove(Component c)
          Removes specified component from this container
static MouseEvent UIManager.retargetMouseEvent(MouseEvent origEvent, Component newSource)
           
 void ScrollPane.setView(Component view)
           
 

Constructors in com.incrediblesoft.redjey with parameters of type Component
ScrollBar(int orientation, Component button1, Component button2, Component caretBtn, java.lang.String styleClassName)
           
ScrollPane(Component view)
           
ScrollPane(Component view, int scrollbarDisplayPolicy)
           
ScrollPane(Component view, int scrollbarDisplayPolicy, java.lang.String styleClassName)
           
 

Uses of Component in com.incrediblesoft.redjey.demo
 

Subclasses of Component in com.incrediblesoft.redjey.demo
 class ComponentsPage
           
 class CustomButton
           
 

Uses of Component in com.incrediblesoft.redjey.event
 

Methods in com.incrediblesoft.redjey.event that return Component
 Component AbstractEvent.getSource()
          Returns event's source
 

Methods in com.incrediblesoft.redjey.event with parameters of type Component
 void AbstractEvent.setSource(Component source)
          Sets source of event
 

Constructors in com.incrediblesoft.redjey.event with parameters of type Component
AbstractEvent(Component source, int id, int eventType)
          Default constructor
ActionEvent(Component source)
           
FocusEvent(Component source, int id)
           
MouseEvent(Component source, int mouse_id)
           
MouseEvent(Component source, int mouse_id, int x, int y, int value)
           
PaintEvent(Component source, Rectangle updateRect)