scala.swing

Applet

class Applet extends JApplet

Clients should implement the ui field. See the SimpleApplet demo for an example.

Note: Applet extends javax.swing.JApplet to satisfy Java's applet loading mechanism. The usual component wrapping scheme doesn't work here.

Attributes
abstract
Self Type
Applet
Source
Applet.scala
See also

javax.swing.JApplet

Linear Supertypes
JApplet, RootPaneContainer, Applet, Panel, Accessible, Container, Component, Serializable, MenuContainer, ImageObserver, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Applet
  2. JApplet
  3. RootPaneContainer
  4. Applet
  5. Panel
  6. Accessible
  7. Container
  8. Component
  9. Serializable
  10. MenuContainer
  11. ImageObserver
  12. AnyRef
  13. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Applet ()

Type Members

  1. class UI extends RootPanel

    Attributes
    abstract

Abstract Value Members

  1. val ui : UI

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Equivalent to x.hashCode except for boxed numeric types.

    Equivalent to x.hashCode except for boxed numeric types. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them.

    returns

    a hash value consistent with ==

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Test two objects for equality.

    Test two objects for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Attributes
    final
    Definition Classes
    Any
  6. def add (arg0: Component, arg1: Any, arg2: Int): Unit

    Definition Classes
    Container
  7. def add (arg0: Component, arg1: Any): Unit

    Definition Classes
    Container
  8. def add (arg0: Component, arg1: Int): Component

    Definition Classes
    Container
  9. def add (arg0: String, arg1: Component): Component

    Definition Classes
    Container
  10. def add (arg0: Component): Component

    Definition Classes
    Container
  11. def add (arg0: PopupMenu): Unit

    Definition Classes
    Component
  12. def addComponentListener (arg0: ComponentListener): Unit

    Definition Classes
    Component
  13. def addContainerListener (arg0: ContainerListener): Unit

    Definition Classes
    Container
  14. def addFocusListener (arg0: FocusListener): Unit

    Definition Classes
    Component
  15. def addHierarchyBoundsListener (arg0: HierarchyBoundsListener): Unit

    Definition Classes
    Component
  16. def addHierarchyListener (arg0: HierarchyListener): Unit

    Definition Classes
    Component
  17. def addImpl (arg0: Component, arg1: Any, arg2: Int): Unit

    Attributes
    protected[swing]
    Definition Classes
    JApplet → Container
  18. def addInputMethodListener (arg0: InputMethodListener): Unit

    Definition Classes
    Component
  19. def addKeyListener (arg0: KeyListener): Unit

    Definition Classes
    Component
  20. def addMouseListener (arg0: MouseListener): Unit

    Definition Classes
    Component
  21. def addMouseMotionListener (arg0: MouseMotionListener): Unit

    Definition Classes
    Component
  22. def addMouseWheelListener (arg0: MouseWheelListener): Unit

    Definition Classes
    Component
  23. def addNotify (): Unit

    Definition Classes
    Panel → Container → Component
  24. def addPropertyChangeListener (arg0: String, arg1: PropertyChangeListener): Unit

    Definition Classes
    Container → Component
  25. def addPropertyChangeListener (arg0: PropertyChangeListener): Unit

    Definition Classes
    Container → Component
  26. def applyComponentOrientation (arg0: ComponentOrientation): Unit

    Definition Classes
    Container → Component
  27. def areFocusTraversalKeysSet (arg0: Int): Boolean

    Definition Classes
    Container → Component
  28. def asInstanceOf [T0] : T0

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Attributes
    final
    Definition Classes
    Any
  29. def checkImage (arg0: Image, arg1: Int, arg2: Int, arg3: ImageObserver): Int

    Definition Classes
    Component
  30. def checkImage (arg0: Image, arg1: ImageObserver): Int

    Definition Classes
    Component
  31. def clone (): AnyRef

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. def coalesceEvents (arg0: AWTEvent, arg1: AWTEvent): AWTEvent

    Attributes
    protected[awt]
    Definition Classes
    Component
  33. def contains (arg0: Point): Boolean

    Definition Classes
    Component
  34. def contains (arg0: Int, arg1: Int): Boolean

    Definition Classes
    Component
  35. def createImage (arg0: Int, arg1: Int): Image

    Definition Classes
    Component
  36. def createImage (arg0: ImageProducer): Image

    Definition Classes
    Component
  37. def createRootPane (): JRootPane

    Attributes
    protected[swing]
    Definition Classes
    JApplet
  38. def createVolatileImage (arg0: Int, arg1: Int, arg2: ImageCapabilities): VolatileImage

    Definition Classes
    Component
    Annotations
    @throws()
  39. def createVolatileImage (arg0: Int, arg1: Int): VolatileImage

    Definition Classes
    Component
  40. def destroy (): Unit

    Definition Classes
    Applet
  41. def disableEvents (arg0: Long): Unit

    Attributes
    protected[awt] final
    Definition Classes
    Component
  42. def dispatchEvent (arg0: AWTEvent): Unit

    Attributes
    final
    Definition Classes
    Component
  43. def doLayout (): Unit

    Definition Classes
    Container → Component
  44. def enableEvents (arg0: Long): Unit

    Attributes
    protected[awt] final
    Definition Classes
    Component
  45. def enableInputMethods (arg0: Boolean): Unit

    Definition Classes
    Component
  46. def eq (arg0: AnyRef): Boolean

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Attributes
    final
    Definition Classes
    AnyRef
  47. def equals (arg0: Any): Boolean

    The equality method for reference types.

    The equality method for reference types. See equals in Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  48. def finalize (): Unit

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  49. def findComponentAt (arg0: Point): Component

    Definition Classes
    Container
  50. def findComponentAt (arg0: Int, arg1: Int): Component

    Definition Classes
    Container
  51. def firePropertyChange (arg0: String, arg1: Double, arg2: Double): Unit

    Definition Classes
    Component
  52. def firePropertyChange (arg0: String, arg1: Float, arg2: Float): Unit

    Definition Classes
    Component
  53. def firePropertyChange (arg0: String, arg1: Long, arg2: Long): Unit

    Definition Classes
    Component
  54. def firePropertyChange (arg0: String, arg1: Short, arg2: Short): Unit

    Definition Classes
    Component
  55. def firePropertyChange (arg0: String, arg1: Char, arg2: Char): Unit

    Definition Classes
    Component
  56. def firePropertyChange (arg0: String, arg1: Byte, arg2: Byte): Unit

    Definition Classes
    Component
  57. def firePropertyChange (arg0: String, arg1: Int, arg2: Int): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  58. def firePropertyChange (arg0: String, arg1: Boolean, arg2: Boolean): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  59. def firePropertyChange (arg0: String, arg1: Any, arg2: Any): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  60. def getAccessibleContext (): AccessibleContext

    Definition Classes
    JApplet → Applet → Panel → Accessible → Component
  61. def getAlignmentX (): Float

    Definition Classes
    Container → Component
  62. def getAlignmentY (): Float

    Definition Classes
    Container → Component
  63. def getAppletContext (): AppletContext

    Definition Classes
    Applet
  64. def getAppletInfo (): String

    Definition Classes
    Applet
  65. def getAudioClip (arg0: URL, arg1: String): AudioClip

    Definition Classes
    Applet
  66. def getAudioClip (arg0: URL): AudioClip

    Definition Classes
    Applet
  67. def getBackground (): Color

    Definition Classes
    Component
  68. def getBounds (arg0: Rectangle): Rectangle

    Definition Classes
    Component
  69. def getBounds (): Rectangle

    Definition Classes
    Component
  70. def getClass (): java.lang.Class[_]

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Attributes
    final
    Definition Classes
    AnyRef → Any
  71. def getCodeBase (): URL

    Definition Classes
    Applet
  72. def getColorModel (): ColorModel

    Definition Classes
    Component
  73. def getComponent (arg0: Int): Component

    Definition Classes
    Container
  74. def getComponentAt (arg0: Point): Component

    Definition Classes
    Container → Component
  75. def getComponentAt (arg0: Int, arg1: Int): Component

    Definition Classes
    Container → Component
  76. def getComponentCount (): Int

    Definition Classes
    Container
  77. def getComponentListeners (): Array[ComponentListener]

    Definition Classes
    Component
  78. def getComponentOrientation (): ComponentOrientation

    Definition Classes
    Component
  79. def getComponentZOrder (arg0: Component): Int

    Attributes
    final
    Definition Classes
    Container
  80. def getComponents (): Array[Component]

    Definition Classes
    Container
  81. def getContainerListeners (): Array[ContainerListener]

    Definition Classes
    Container
  82. def getContentPane (): Container

    Definition Classes
    JApplet → RootPaneContainer
  83. def getCursor (): Cursor

    Definition Classes
    Component
  84. def getDocumentBase (): URL

    Definition Classes
    Applet
  85. def getDropTarget (): DropTarget

    Definition Classes
    Component
  86. def getFocusCycleRootAncestor (): Container

    Definition Classes
    Component
  87. def getFocusListeners (): Array[FocusListener]

    Definition Classes
    Component
  88. def getFocusTraversalKeys (arg0: Int): Set[AWTKeyStroke]

    Definition Classes
    Container → Component
  89. def getFocusTraversalKeysEnabled (): Boolean

    Definition Classes
    Component
  90. def getFocusTraversalPolicy (): FocusTraversalPolicy

    Definition Classes
    Container
  91. def getFont (): Font

    Definition Classes
    Component → MenuContainer
  92. def getFontMetrics (arg0: Font): FontMetrics

    Definition Classes
    Component
  93. def getForeground (): Color

    Definition Classes
    Component
  94. def getGlassPane (): Component

    Definition Classes
    JApplet → RootPaneContainer
  95. def getGraphics (): Graphics

    Definition Classes
    Component
  96. def getGraphicsConfiguration (): GraphicsConfiguration

    Definition Classes
    Component
  97. def getHeight (): Int

    Definition Classes
    Component
  98. def getHierarchyBoundsListeners (): Array[HierarchyBoundsListener]

    Definition Classes
    Component
  99. def getHierarchyListeners (): Array[HierarchyListener]

    Definition Classes
    Component
  100. def getIgnoreRepaint (): Boolean

    Definition Classes
    Component
  101. def getImage (arg0: URL, arg1: String): Image

    Definition Classes
    Applet
  102. def getImage (arg0: URL): Image

    Definition Classes
    Applet
  103. def getInputContext (): InputContext

    Definition Classes
    Component
  104. def getInputMethodListeners (): Array[InputMethodListener]

    Definition Classes
    Component
  105. def getInputMethodRequests (): InputMethodRequests

    Definition Classes
    Component
  106. def getInsets (): Insets

    Definition Classes
    Container
  107. def getJMenuBar (): JMenuBar

    Definition Classes
    JApplet
  108. def getKeyListeners (): Array[KeyListener]

    Definition Classes
    Component
  109. def getLayeredPane (): JLayeredPane

    Definition Classes
    JApplet → RootPaneContainer
  110. def getLayout (): LayoutManager

    Definition Classes
    Container
  111. def getListeners [T <: EventListener] (arg0: Class[T]): Array[T]

    Definition Classes
    Container → Component
  112. def getLocale (): Locale

    Definition Classes
    Applet → Component
  113. def getLocation (arg0: Point): Point

    Definition Classes
    Component
  114. def getLocation (): Point

    Definition Classes
    Component
  115. def getLocationOnScreen (): Point

    Definition Classes
    Component
  116. def getMaximumSize (): Dimension

    Definition Classes
    Container → Component
  117. def getMinimumSize (): Dimension

    Definition Classes
    Container → Component
  118. def getMouseListeners (): Array[MouseListener]

    Definition Classes
    Component
  119. def getMouseMotionListeners (): Array[MouseMotionListener]

    Definition Classes
    Component
  120. def getMousePosition (arg0: Boolean): Point

    Definition Classes
    Container
    Annotations
    @throws()
  121. def getMousePosition (): Point

    Definition Classes
    Component
    Annotations
    @throws()
  122. def getMouseWheelListeners (): Array[MouseWheelListener]

    Definition Classes
    Component
  123. def getName (): String

    Definition Classes
    Component
  124. def getParameter (arg0: String): String

    Definition Classes
    Applet
  125. def getParameterInfo (): Array[Array[String]]

    Definition Classes
    Applet
  126. def getParent (): Container

    Definition Classes
    Component
  127. def getPreferredSize (): Dimension

    Definition Classes
    Container → Component
  128. def getPropertyChangeListeners (arg0: String): Array[PropertyChangeListener]

    Definition Classes
    Component
  129. def getPropertyChangeListeners (): Array[PropertyChangeListener]

    Definition Classes
    Component
  130. def getRootPane (): JRootPane

    Definition Classes
    JApplet → RootPaneContainer
  131. def getSize (arg0: Dimension): Dimension

    Definition Classes
    Component
  132. def getSize (): Dimension

    Definition Classes
    Component
  133. def getToolkit (): Toolkit

    Definition Classes
    Component
  134. def getTreeLock (): AnyRef

    Attributes
    final
    Definition Classes
    Component
  135. def getWidth (): Int

    Definition Classes
    Component
  136. def getX (): Int

    Definition Classes
    Component
  137. def getY (): Int

    Definition Classes
    Component
  138. def hasFocus (): Boolean

    Definition Classes
    Component
  139. def hashCode (): Int

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  140. def imageUpdate (arg0: Image, arg1: Int, arg2: Int, arg3: Int, arg4: Int, arg5: Int): Boolean

    Definition Classes
    Component → ImageObserver
  141. def init (): Unit

    Definition Classes
    Applet → Applet
  142. def invalidate (): Unit

    Definition Classes
    Container → Component
  143. def isActive (): Boolean

    Definition Classes
    Applet
  144. def isAncestorOf (arg0: Component): Boolean

    Definition Classes
    Container
  145. def isBackgroundSet (): Boolean

    Definition Classes
    Component
  146. def isCursorSet (): Boolean

    Definition Classes
    Component
  147. def isDisplayable (): Boolean

    Definition Classes
    Component
  148. def isDoubleBuffered (): Boolean

    Definition Classes
    Component
  149. def isEnabled (): Boolean

    Definition Classes
    Component
  150. def isFocusCycleRoot (): Boolean

    Definition Classes
    Container
  151. def isFocusCycleRoot (arg0: Container): Boolean

    Definition Classes
    Container → Component
  152. def isFocusOwner (): Boolean

    Definition Classes
    Component
  153. def isFocusTraversalPolicyProvider (): Boolean

    Attributes
    final
    Definition Classes
    Container
  154. def isFocusTraversalPolicySet (): Boolean

    Definition Classes
    Container
  155. def isFocusable (): Boolean

    Definition Classes
    Component
  156. def isFontSet (): Boolean

    Definition Classes
    Component
  157. def isForegroundSet (): Boolean

    Definition Classes
    Component
  158. def isInstanceOf [T0] : Boolean

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Attributes
    final
    Definition Classes
    Any
  159. def isLightweight (): Boolean

    Definition Classes
    Component
  160. def isMaximumSizeSet (): Boolean

    Definition Classes
    Component
  161. def isMinimumSizeSet (): Boolean

    Definition Classes
    Component
  162. def isOpaque (): Boolean

    Definition Classes
    Component
  163. def isPreferredSizeSet (): Boolean

    Definition Classes
    Component
  164. def isRootPaneCheckingEnabled (): Boolean

    Attributes
    protected[swing]
    Definition Classes
    JApplet
  165. def isShowing (): Boolean

    Definition Classes
    Component
  166. def isValid (): Boolean

    Definition Classes
    Component
  167. def isVisible (): Boolean

    Definition Classes
    Component
  168. def list (arg0: PrintWriter, arg1: Int): Unit

    Definition Classes
    Container → Component
  169. def list (arg0: PrintStream, arg1: Int): Unit

    Definition Classes
    Container → Component
  170. def list (arg0: PrintWriter): Unit

    Definition Classes
    Component
  171. def list (arg0: PrintStream): Unit

    Definition Classes
    Component
  172. def list (): Unit

    Definition Classes
    Component
  173. def ne (arg0: AnyRef): Boolean

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Attributes
    final
    Definition Classes
    AnyRef
  174. def notify (): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Attributes
    final
    Definition Classes
    AnyRef
  175. def notifyAll (): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Attributes
    final
    Definition Classes
    AnyRef
  176. def paint (arg0: Graphics): Unit

    Definition Classes
    Container → Component
  177. def paintAll (arg0: Graphics): Unit

    Definition Classes
    Component
  178. def paintComponents (arg0: Graphics): Unit

    Definition Classes
    Container
  179. def paramString (): String

    Attributes
    protected[swing]
    Definition Classes
    JApplet → Container → Component
  180. def play (arg0: URL, arg1: String): Unit

    Definition Classes
    Applet
  181. def play (arg0: URL): Unit

    Definition Classes
    Applet
  182. def prepareImage (arg0: Image, arg1: Int, arg2: Int, arg3: ImageObserver): Boolean

    Definition Classes
    Component
  183. def prepareImage (arg0: Image, arg1: ImageObserver): Boolean

    Definition Classes
    Component
  184. def print (arg0: Graphics): Unit

    Definition Classes
    Container → Component
  185. def printAll (arg0: Graphics): Unit

    Definition Classes
    Component
  186. def printComponents (arg0: Graphics): Unit

    Definition Classes
    Container
  187. def processComponentEvent (arg0: ComponentEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  188. def processContainerEvent (arg0: ContainerEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Container
  189. def processEvent (arg0: AWTEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Container → Component
  190. def processFocusEvent (arg0: FocusEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  191. def processHierarchyBoundsEvent (arg0: HierarchyEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  192. def processHierarchyEvent (arg0: HierarchyEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  193. def processInputMethodEvent (arg0: InputMethodEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  194. def processKeyEvent (arg0: KeyEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  195. def processMouseEvent (arg0: MouseEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  196. def processMouseMotionEvent (arg0: MouseEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  197. def processMouseWheelEvent (arg0: MouseWheelEvent): Unit

    Attributes
    protected[awt]
    Definition Classes
    Component
  198. def remove (arg0: Component): Unit

    Definition Classes
    JApplet → Container
  199. def remove (arg0: Int): Unit

    Definition Classes
    Container
  200. def remove (arg0: MenuComponent): Unit

    Definition Classes
    Component → MenuContainer
  201. def removeAll (): Unit

    Definition Classes
    Container
  202. def removeComponentListener (arg0: ComponentListener): Unit

    Definition Classes
    Component
  203. def removeContainerListener (arg0: ContainerListener): Unit

    Definition Classes
    Container
  204. def removeFocusListener (arg0: FocusListener): Unit

    Definition Classes
    Component
  205. def removeHierarchyBoundsListener (arg0: HierarchyBoundsListener): Unit

    Definition Classes
    Component
  206. def removeHierarchyListener (arg0: HierarchyListener): Unit

    Definition Classes
    Component
  207. def removeInputMethodListener (arg0: InputMethodListener): Unit

    Definition Classes
    Component
  208. def removeKeyListener (arg0: KeyListener): Unit

    Definition Classes
    Component
  209. def removeMouseListener (arg0: MouseListener): Unit

    Definition Classes
    Component
  210. def removeMouseMotionListener (arg0: MouseMotionListener): Unit

    Definition Classes
    Component
  211. def removeMouseWheelListener (arg0: MouseWheelListener): Unit

    Definition Classes
    Component
  212. def removeNotify (): Unit

    Definition Classes
    Container → Component
  213. def removePropertyChangeListener (arg0: String, arg1: PropertyChangeListener): Unit

    Definition Classes
    Component
  214. def removePropertyChangeListener (arg0: PropertyChangeListener): Unit

    Definition Classes
    Component
  215. def repaint (arg0: Long, arg1: Int, arg2: Int, arg3: Int, arg4: Int): Unit

    Definition Classes
    Component
  216. def repaint (arg0: Int, arg1: Int, arg2: Int, arg3: Int): Unit

    Definition Classes
    Component
  217. def repaint (arg0: Long): Unit

    Definition Classes
    Component
  218. def repaint (): Unit

    Definition Classes
    Component
  219. def requestFocus (arg0: Boolean): Boolean

    Attributes
    protected[awt]
    Definition Classes
    Component
  220. def requestFocus (): Unit

    Definition Classes
    Component
  221. def requestFocusInWindow (arg0: Boolean): Boolean

    Attributes
    protected[awt]
    Definition Classes
    Component
  222. def requestFocusInWindow (): Boolean

    Definition Classes
    Component
  223. def resize (arg0: Dimension): Unit

    Definition Classes
    Applet → Component
  224. def resize (arg0: Int, arg1: Int): Unit

    Definition Classes
    Applet → Component
  225. def setBackground (arg0: Color): Unit

    Definition Classes
    Component
  226. def setBounds (arg0: Rectangle): Unit

    Definition Classes
    Component
  227. def setBounds (arg0: Int, arg1: Int, arg2: Int, arg3: Int): Unit

    Definition Classes
    Component
  228. def setComponentOrientation (arg0: ComponentOrientation): Unit

    Definition Classes
    Component
  229. def setComponentZOrder (arg0: Component, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    Container
  230. def setContentPane (arg0: Container): Unit

    Definition Classes
    JApplet → RootPaneContainer
  231. def setCursor (arg0: Cursor): Unit

    Definition Classes
    Component
  232. def setDropTarget (arg0: DropTarget): Unit

    Definition Classes
    Component
  233. def setEnabled (arg0: Boolean): Unit

    Definition Classes
    Component
  234. def setFocusCycleRoot (arg0: Boolean): Unit

    Definition Classes
    Container
  235. def setFocusTraversalKeys (arg0: Int, arg1: java.util.Set[_ <: java.awt.AWTKeyStroke]): Unit

    Definition Classes
    Container → Component
  236. def setFocusTraversalKeysEnabled (arg0: Boolean): Unit

    Definition Classes
    Component
  237. def setFocusTraversalPolicy (arg0: FocusTraversalPolicy): Unit

    Definition Classes
    Container
  238. def setFocusTraversalPolicyProvider (arg0: Boolean): Unit

    Attributes
    final
    Definition Classes
    Container
  239. def setFocusable (arg0: Boolean): Unit

    Definition Classes
    Component
  240. def setFont (arg0: Font): Unit

    Definition Classes
    Container → Component
  241. def setForeground (arg0: Color): Unit

    Definition Classes
    Component
  242. def setGlassPane (arg0: Component): Unit

    Definition Classes
    JApplet → RootPaneContainer
  243. def setIgnoreRepaint (arg0: Boolean): Unit

    Definition Classes
    Component
  244. def setJMenuBar (arg0: JMenuBar): Unit

    Definition Classes
    JApplet
  245. def setLayeredPane (arg0: JLayeredPane): Unit

    Definition Classes
    JApplet → RootPaneContainer
  246. def setLayout (arg0: LayoutManager): Unit

    Definition Classes
    JApplet → Container
  247. def setLocale (arg0: Locale): Unit

    Definition Classes
    Component
  248. def setLocation (arg0: Point): Unit

    Definition Classes
    Component
  249. def setLocation (arg0: Int, arg1: Int): Unit

    Definition Classes
    Component
  250. def setMaximumSize (arg0: Dimension): Unit

    Definition Classes
    Component
  251. def setMinimumSize (arg0: Dimension): Unit

    Definition Classes
    Component
  252. def setName (arg0: String): Unit

    Definition Classes
    Component
  253. def setPreferredSize (arg0: Dimension): Unit

    Definition Classes
    Component
  254. def setRootPane (arg0: JRootPane): Unit

    Attributes
    protected[swing]
    Definition Classes
    JApplet
  255. def setRootPaneCheckingEnabled (arg0: Boolean): Unit

    Attributes
    protected[swing]
    Definition Classes
    JApplet
  256. def setSize (arg0: Dimension): Unit

    Definition Classes
    Component
  257. def setSize (arg0: Int, arg1: Int): Unit

    Definition Classes
    Component
  258. def setStub (arg0: AppletStub): Unit

    Attributes
    final
    Definition Classes
    Applet
  259. def setVisible (arg0: Boolean): Unit

    Definition Classes
    Component
  260. def showStatus (arg0: String): Unit

    Definition Classes
    Applet
  261. def start (): Unit

    Definition Classes
    Applet → Applet
  262. def stop (): Unit

    Definition Classes
    Applet → Applet
  263. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  264. def toString (): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    Component → AnyRef → Any
  265. def transferFocus (): Unit

    Definition Classes
    Component
  266. def transferFocusBackward (): Unit

    Definition Classes
    Container → Component
  267. def transferFocusDownCycle (): Unit

    Definition Classes
    Container
  268. def transferFocusUpCycle (): Unit

    Definition Classes
    Component
  269. def update (arg0: Graphics): Unit

    Definition Classes
    JApplet → Container → Component
  270. def validate (): Unit

    Definition Classes
    Container → Component
  271. def validateTree (): Unit

    Attributes
    protected[awt]
    Definition Classes
    Container
  272. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  273. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  274. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Deprecated Value Members

  1. def action (arg0: Event, arg1: Any): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  2. def bounds (): Rectangle

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  3. def countComponents (): Int

    Definition Classes
    Container
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  4. def deliverEvent (arg0: Event): Unit

    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  5. def disable (): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  6. def enable (arg0: Boolean): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  7. def enable (): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  8. def getPeer (): ComponentPeer

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  9. def gotFocus (arg0: Event, arg1: Any): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  10. def handleEvent (arg0: Event): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  11. def hide (): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  12. def insets (): Insets

    Definition Classes
    Container
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  13. def inside (arg0: Int, arg1: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  14. def isFocusTraversable (): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  15. def keyDown (arg0: Event, arg1: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  16. def keyUp (arg0: Event, arg1: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  17. def layout (): Unit

    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  18. def locate (arg0: Int, arg1: Int): Component

    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  19. def location (): Point

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  20. def lostFocus (arg0: Event, arg1: Any): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  21. def minimumSize (): Dimension

    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  22. def mouseDown (arg0: Event, arg1: Int, arg2: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  23. def mouseDrag (arg0: Event, arg1: Int, arg2: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  24. def mouseEnter (arg0: Event, arg1: Int, arg2: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  25. def mouseExit (arg0: Event, arg1: Int, arg2: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  26. def mouseMove (arg0: Event, arg1: Int, arg2: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  27. def mouseUp (arg0: Event, arg1: Int, arg2: Int): Boolean

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  28. def move (arg0: Int, arg1: Int): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  29. def nextFocus (): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  30. def postEvent (arg0: Event): Boolean

    Definition Classes
    Component → MenuContainer
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  31. def preferredSize (): Dimension

    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  32. def reshape (arg0: Int, arg1: Int, arg2: Int, arg3: Int): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  33. def show (arg0: Boolean): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  34. def show (): Unit

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

  35. def size (): Dimension

    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    see corresponding Javadoc for more information.

Inherited from JApplet

Inherited from RootPaneContainer

Inherited from Applet

Inherited from Panel

Inherited from Accessible

Inherited from Container

Inherited from Component

Inherited from Serializable

Inherited from MenuContainer

Inherited from ImageObserver

Inherited from AnyRef

Inherited from Any