Class

org.nlogo.lite

AppletPanel

Related Doc: package lite

Permalink

abstract class AppletPanel extends JPanel with Handler with LinkParent with LinkRoot

The superclass of org.nlogo.lite.InterfaceComponent. Also used by org.nlogo.lite.Applet.

See the "Controlling" section of the NetLogo User Manual for example code.

Source
AppletPanel.scala
Linear Supertypes
LinkRoot, LinkParent, Handler, JPanel, Accessible, JComponent, HasGetTransferHandler, Container, Component, Serializable, MenuContainer, ImageObserver, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AppletPanel
  2. LinkRoot
  3. LinkParent
  4. Handler
  5. JPanel
  6. Accessible
  7. JComponent
  8. HasGetTransferHandler
  9. Container
  10. Component
  11. Serializable
  12. MenuContainer
  13. ImageObserver
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AppletPanel(frame: Frame, iconListener: MouseListener, isApplet: Boolean)

    Permalink

Type Members

  1. abstract class AccessibleAWTComponent extends AccessibleContext with Serializable with AccessibleComponent

    Permalink
    Attributes
    protected
    Definition Classes
    Component
  2. class AccessibleAWTContainer extends AccessibleAWTComponent

    Permalink
    Attributes
    protected
    Definition Classes
    Container
  3. abstract class AccessibleJComponent extends AccessibleAWTContainer with AccessibleExtendedComponent

    Permalink
    Definition Classes
    JComponent
  4. class AccessibleJPanel extends AccessibleJComponent

    Permalink
    Attributes
    protected
    Definition Classes
    JPanel
  5. final class ActionStandin extends Action

    Permalink
    Attributes
    private[javax.swing]
    Definition Classes
    JComponent
  6. class BltBufferStrategy extends BufferStrategy

    Permalink
    Attributes
    protected
    Definition Classes
    Component
  7. class FlipBufferStrategy extends BufferStrategy

    Permalink
    Attributes
    protected
    Definition Classes
    Component

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def add(arg0: Component, arg1: Any, arg2: Int): Unit

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

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

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

    Permalink
    Definition Classes
    Container
  8. def add(arg0: Component): Component

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

    Permalink
    Definition Classes
    Component
  10. def addAncestorListener(arg0: AncestorListener): Unit

    Permalink
    Definition Classes
    JComponent
  11. def addComponentListener(arg0: ComponentListener): Unit

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

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

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

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

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

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Container
  17. def addInputMethodListener(arg0: InputMethodListener): Unit

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

    Permalink
    Definition Classes
    Component
  19. def addLinkComponent(c: AnyRef): Unit

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

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

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

    Permalink
    Definition Classes
    Component
  23. def addNotify(): Unit

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

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

    Permalink
    Definition Classes
    Container → Component
  26. def addVetoableChangeListener(arg0: VetoableChangeListener): Unit

    Permalink
    Definition Classes
    JComponent
  27. def applyComponentOrientation(arg0: ComponentOrientation): Unit

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

    Permalink
    Definition Classes
    Container → Component
  29. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  30. def checkImage(arg0: Image, arg1: Int, arg2: Int, arg3: ImageObserver): Int

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

    Permalink
    Definition Classes
    Component
  32. def clone(): AnyRef

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

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Component
  34. def command(source: String): Unit

    Permalink

    Runs NetLogo commands and waits for them to complete.

    Runs NetLogo commands and waits for them to complete.

    This method must not be called from the AWT event queue thread or while that thread is blocked. It is an error to do so.

    source

    The command or commands to run

    Annotations
    @throws( classOf[CompilerException] )
    Exceptions thrown

    IllegalStateException if called from the AWT event queue thread

    org.nlogo.core.CompilerException if the code fails to compile

    See also

    #commandLater

  35. def commandLater(source: String): Unit

    Permalink

    Runs NetLogo commands in the background.

    Runs NetLogo commands in the background. Returns immediately, without waiting for the commands to finish.

    This method may be called from any thread.

    source

    The command or commands to run

    Annotations
    @throws( classOf[CompilerException] )
    Exceptions thrown

    org.nlogo.core.CompilerException if the code fails to compile

    See also

    #command

  36. def computeVisibleRect(arg0: Rectangle): Unit

    Permalink
    Definition Classes
    JComponent
  37. def contains(arg0: Int, arg1: Int): Boolean

    Permalink
    Definition Classes
    JComponent → Component
  38. def contains(arg0: Point): Boolean

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

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

    Permalink
    Definition Classes
    Component
  41. def createInterfacePanel(workspace: LiteWorkspace): InterfacePanelLite

    Permalink
    Attributes
    protected
  42. def createToolTip(): JToolTip

    Permalink
    Definition Classes
    JComponent
  43. def createVolatileImage(arg0: Int, arg1: Int, arg2: ImageCapabilities): VolatileImage

    Permalink
    Definition Classes
    Component
    Annotations
    @throws( classOf[java.awt.AWTException] )
  44. def createVolatileImage(arg0: Int, arg1: Int): VolatileImage

    Permalink
    Definition Classes
    Component
  45. val defaultOwner: SimpleJobOwner

    Permalink
  46. final def disableEvents(arg0: Long): Unit

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

    Permalink
    Definition Classes
    Component
  48. def doLayout(): Unit

    Permalink
    Definition Classes
    Container → Component
  49. final def enableEvents(arg0: Long): Unit

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Component
  50. def enableInputMethods(arg0: Boolean): Unit

    Permalink
    Definition Classes
    Component
  51. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  52. def equals(arg0: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  54. def findComponentAt(arg0: Point): Component

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

    Permalink
    Definition Classes
    Container
  56. def firePropertyChange(arg0: String, arg1: Char, arg2: Char): Unit

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

    Permalink
    Definition Classes
    JComponent → Component
  58. def firePropertyChange(arg0: String, arg1: Boolean, arg2: Boolean): Unit

    Permalink
    Definition Classes
    JComponent → Component
  59. def firePropertyChange(arg0: String, arg1: Double, arg2: Double): Unit

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

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

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

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

    Permalink
    Definition Classes
    Component
  64. def firePropertyChange(arg0: String, arg1: Any, arg2: Any): Unit

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Component
  65. def fireVetoableChange(arg0: String, arg1: Any, arg2: Any): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
    Annotations
    @throws( ... )
  66. def getAccessibleContext(): AccessibleContext

    Permalink
    Definition Classes
    JPanel → Accessible → Component
  67. def getActionForKeyStroke(arg0: KeyStroke): ActionListener

    Permalink
    Definition Classes
    JComponent
  68. final def getActionMap(): ActionMap

    Permalink
    Definition Classes
    JComponent
  69. def getAlignmentX(): Float

    Permalink
    Definition Classes
    JComponent → Container → Component
  70. def getAlignmentY(): Float

    Permalink
    Definition Classes
    JComponent → Container → Component
  71. def getAncestorListeners(): Array[AncestorListener]

    Permalink
    Definition Classes
    JComponent
  72. def getAutoscrolls(): Boolean

    Permalink
    Definition Classes
    JComponent
  73. def getBackground(): Color

    Permalink
    Definition Classes
    Component
    Annotations
    @Transient()
  74. def getBaseline(arg0: Int, arg1: Int): Int

    Permalink
    Definition Classes
    JComponent → Component
  75. def getBaselineResizeBehavior(): BaselineResizeBehavior

    Permalink
    Definition Classes
    JComponent → Component
  76. def getBorder(): Border

    Permalink
    Definition Classes
    JComponent
  77. def getBounds(arg0: Rectangle): Rectangle

    Permalink
    Definition Classes
    JComponent → Component
  78. def getBounds(): Rectangle

    Permalink
    Definition Classes
    Component
  79. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  80. final def getClientProperty(arg0: Any): AnyRef

    Permalink
    Definition Classes
    JComponent
  81. def getColorModel(): ColorModel

    Permalink
    Definition Classes
    Component
  82. def getComponent(arg0: Int): Component

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

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

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

    Permalink
    Definition Classes
    Container
  86. def getComponentGraphics(arg0: Graphics): Graphics

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  87. def getComponentListeners(): Array[ComponentListener]

    Permalink
    Definition Classes
    Component
  88. def getComponentOrientation(): ComponentOrientation

    Permalink
    Definition Classes
    Component
  89. def getComponentPopupMenu(): JPopupMenu

    Permalink
    Definition Classes
    JComponent
  90. def getComponentZOrder(arg0: Component): Int

    Permalink
    Definition Classes
    Container
  91. def getComponents(): Array[Component]

    Permalink
    Definition Classes
    Container
  92. def getConditionForKeyStroke(arg0: KeyStroke): Int

    Permalink
    Definition Classes
    JComponent
  93. def getContainerListeners(): Array[ContainerListener]

    Permalink
    Definition Classes
    Container
  94. def getCursor(): Cursor

    Permalink
    Definition Classes
    Component
  95. def getDebugGraphicsOptions(): Int

    Permalink
    Definition Classes
    JComponent
  96. def getDropTarget(): DropTarget

    Permalink
    Definition Classes
    Component
  97. def getFileURL(filename: String): URL

    Permalink

    internal use only

    internal use only

    Annotations
    @throws( ... )
  98. def getFocusCycleRootAncestor(): Container

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

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

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

    Permalink
    Definition Classes
    Component
  102. def getFocusTraversalPolicy(): FocusTraversalPolicy

    Permalink
    Definition Classes
    Container
  103. def getFont(): Font

    Permalink
    Definition Classes
    Component → MenuContainer
    Annotations
    @Transient()
  104. def getFontMetrics(arg0: Font): FontMetrics

    Permalink
    Definition Classes
    JComponent → Component
  105. def getForeground(): Color

    Permalink
    Definition Classes
    Component
    Annotations
    @Transient()
  106. def getGraphics(): Graphics

    Permalink
    Definition Classes
    JComponent → Component
  107. def getGraphicsConfiguration(): GraphicsConfiguration

    Permalink
    Definition Classes
    Component
  108. def getHeight(): Int

    Permalink
    Definition Classes
    JComponent → Component
  109. def getHierarchyBoundsListeners(): Array[HierarchyBoundsListener]

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

    Permalink
    Definition Classes
    Component
  111. def getIgnoreRepaint(): Boolean

    Permalink
    Definition Classes
    Component
  112. def getInheritsPopupMenu(): Boolean

    Permalink
    Definition Classes
    JComponent
  113. def getInputContext(): InputContext

    Permalink
    Definition Classes
    Component
  114. final def getInputMap(): InputMap

    Permalink
    Definition Classes
    JComponent
  115. final def getInputMap(arg0: Int): InputMap

    Permalink
    Definition Classes
    JComponent
  116. def getInputMethodListeners(): Array[InputMethodListener]

    Permalink
    Definition Classes
    Component
  117. def getInputMethodRequests(): InputMethodRequests

    Permalink
    Definition Classes
    Component
  118. def getInputVerifier(): InputVerifier

    Permalink
    Definition Classes
    JComponent
  119. def getInsets(arg0: Insets): Insets

    Permalink
    Definition Classes
    JComponent
  120. def getInsets(): Insets

    Permalink
    Definition Classes
    JComponent → Container
  121. def getKeyListeners(): Array[KeyListener]

    Permalink
    Definition Classes
    Component
  122. def getLayout(): LayoutManager

    Permalink
    Definition Classes
    Container
  123. def getLinkChildren: Array[AnyRef]

    Permalink
    Definition Classes
    LinkRoot
  124. def getListeners[T <: EventListener](arg0: Class[T]): Array[T]

    Permalink
    Definition Classes
    JComponent → Container → Component
  125. def getLocale(): Locale

    Permalink
    Definition Classes
    Component
  126. def getLocation(arg0: Point): Point

    Permalink
    Definition Classes
    JComponent → Component
  127. def getLocation(): Point

    Permalink
    Definition Classes
    Component
  128. def getLocationOnScreen(): Point

    Permalink
    Definition Classes
    Component
  129. def getMaximumSize(): Dimension

    Permalink
    Definition Classes
    JComponent → Container → Component
    Annotations
    @Transient()
  130. def getMinimumSize(): Dimension

    Permalink
    Definition Classes
    JComponent → Container → Component
    Annotations
    @Transient()
  131. def getMouseListeners(): Array[MouseListener]

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

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

    Permalink
    Definition Classes
    Container
    Annotations
    @throws( classOf[java.awt.HeadlessException] )
  134. def getMousePosition(): Point

    Permalink
    Definition Classes
    Component
    Annotations
    @throws( classOf[java.awt.HeadlessException] )
  135. def getMouseWheelListeners(): Array[MouseWheelListener]

    Permalink
    Definition Classes
    Component
  136. def getName(): String

    Permalink
    Definition Classes
    Component
  137. def getParent(): Container

    Permalink
    Definition Classes
    Component
  138. def getPopupLocation(arg0: MouseEvent): Point

    Permalink
    Definition Classes
    JComponent
  139. def getPreferredSize(): Dimension

    Permalink
    Definition Classes
    JComponent → Container → Component
    Annotations
    @Transient()
  140. def getProcedures: String

    Permalink

    Returns the contents of the Code tab.

    Returns the contents of the Code tab.

    returns

    contents of Code tab

  141. def getPropertyChangeListeners(arg0: String): Array[PropertyChangeListener]

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

    Permalink
    Definition Classes
    Component
  143. def getRegisteredKeyStrokes(): Array[KeyStroke]

    Permalink
    Definition Classes
    JComponent
  144. def getRootPane(): JRootPane

    Permalink
    Definition Classes
    JComponent
  145. def getSize(arg0: Dimension): Dimension

    Permalink
    Definition Classes
    JComponent → Component
  146. def getSize(): Dimension

    Permalink
    Definition Classes
    Component
  147. def getToolTipLocation(arg0: MouseEvent): Point

    Permalink
    Definition Classes
    JComponent
  148. def getToolTipText(arg0: MouseEvent): String

    Permalink
    Definition Classes
    JComponent
  149. def getToolTipText(): String

    Permalink
    Definition Classes
    JComponent
  150. def getToolkit(): Toolkit

    Permalink
    Definition Classes
    Component
  151. def getTopLevelAncestor(): Container

    Permalink
    Definition Classes
    JComponent
  152. def getTransferHandler(): TransferHandler

    Permalink
    Definition Classes
    JComponent → HasGetTransferHandler
  153. final def getTreeLock(): AnyRef

    Permalink
    Definition Classes
    Component
  154. def getUI(): PanelUI

    Permalink
    Definition Classes
    JPanel
  155. def getUIClassID(): String

    Permalink
    Definition Classes
    JPanel → JComponent
  156. def getVerifyInputWhenFocusTarget(): Boolean

    Permalink
    Definition Classes
    JComponent
  157. def getVetoableChangeListeners(): Array[VetoableChangeListener]

    Permalink
    Definition Classes
    JComponent
  158. def getVisibleRect(): Rectangle

    Permalink
    Definition Classes
    JComponent
  159. def getWidth(): Int

    Permalink
    Definition Classes
    JComponent → Component
  160. def getX(): Int

    Permalink
    Definition Classes
    JComponent → Component
  161. def getY(): Int

    Permalink
    Definition Classes
    JComponent → Component
  162. def grabFocus(): Unit

    Permalink
    Definition Classes
    JComponent
  163. def handle(throwable: Throwable): Unit

    Permalink

    internal use only

    internal use only

    Definition Classes
    AppletPanelHandler
  164. def hasFocus(): Boolean

    Permalink
    Definition Classes
    Component
  165. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  166. val iP: InterfacePanelLite

    Permalink
  167. def imageUpdate(arg0: Image, arg1: Int, arg2: Int, arg3: Int, arg4: Int, arg5: Int): Boolean

    Permalink
    Definition Classes
    Component → ImageObserver
  168. def invalidate(): Unit

    Permalink
    Definition Classes
    Container → Component
  169. def isAncestorOf(arg0: Component): Boolean

    Permalink
    Definition Classes
    Container
  170. def isBackgroundSet(): Boolean

    Permalink
    Definition Classes
    Component
  171. def isCursorSet(): Boolean

    Permalink
    Definition Classes
    Component
  172. def isDisplayable(): Boolean

    Permalink
    Definition Classes
    Component
  173. def isDoubleBuffered(): Boolean

    Permalink
    Definition Classes
    JComponent → Component
  174. def isEnabled(): Boolean

    Permalink
    Definition Classes
    Component
  175. def isFocusCycleRoot(): Boolean

    Permalink
    Definition Classes
    Container
  176. def isFocusCycleRoot(arg0: Container): Boolean

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

    Permalink
    Definition Classes
    Component
  178. final def isFocusTraversalPolicyProvider(): Boolean

    Permalink
    Definition Classes
    Container
  179. def isFocusTraversalPolicySet(): Boolean

    Permalink
    Definition Classes
    Container
  180. def isFocusable(): Boolean

    Permalink
    Definition Classes
    Component
  181. def isFontSet(): Boolean

    Permalink
    Definition Classes
    Component
  182. def isForegroundSet(): Boolean

    Permalink
    Definition Classes
    Component
  183. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  184. def isLightweight(): Boolean

    Permalink
    Definition Classes
    Component
  185. def isMaximumSizeSet(): Boolean

    Permalink
    Definition Classes
    Component
  186. def isMinimumSizeSet(): Boolean

    Permalink
    Definition Classes
    Component
  187. def isOpaque(): Boolean

    Permalink
    Definition Classes
    JComponent → Component
  188. def isOptimizedDrawingEnabled(): Boolean

    Permalink
    Definition Classes
    JComponent
  189. final def isPaintingForPrint(): Boolean

    Permalink
    Definition Classes
    JComponent
  190. def isPaintingOrigin(): Boolean

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  191. def isPaintingTile(): Boolean

    Permalink
    Definition Classes
    JComponent
  192. def isPreferredSizeSet(): Boolean

    Permalink
    Definition Classes
    Component
  193. def isRequestFocusEnabled(): Boolean

    Permalink
    Definition Classes
    JComponent
  194. def isShowing(): Boolean

    Permalink
    Definition Classes
    Component
  195. def isValid(): Boolean

    Permalink
    Definition Classes
    Component
  196. def isValidateRoot(): Boolean

    Permalink
    Definition Classes
    JComponent → Container
  197. def isVisible(): Boolean

    Permalink
    Definition Classes
    Component
    Annotations
    @Transient()
  198. val linkComponents: ListBuffer[AnyRef]

    Permalink
    Attributes
    protected
    Definition Classes
    LinkRoot
  199. def list(arg0: PrintWriter, arg1: Int): Unit

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

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

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

    Permalink
    Definition Classes
    Component
  203. def list(): Unit

    Permalink
    Definition Classes
    Component
  204. val listenerManager: NetLogoListenerManager

    Permalink

    The NetLogoListenerManager stored in this field can be used to add and remove NetLogoListeners, so the embedding environment can receive notifications of events happening within NetLogo.

    The NetLogoListenerManager stored in this field can be used to add and remove NetLogoListeners, so the embedding environment can receive notifications of events happening within NetLogo. Relevant methods on NetLogoListenerManager are addListener(), removeListener(), and clearListeners(). The first two take a NetLogoListener as input.

  205. val liteEditorFactory: LiteEditorFactory

    Permalink
    Attributes
    protected
  206. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  207. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  208. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  209. def openFromURI(uri: URI): Unit

    Permalink

    Opens a model stored in a string.

    Opens a model stored in a string.

    Annotations
    @throws( classOf[InvalidVersionException] )
  210. def paint(arg0: Graphics): Unit

    Permalink
    Definition Classes
    JComponent → Container → Component
  211. def paintAll(arg0: Graphics): Unit

    Permalink
    Definition Classes
    Component
  212. def paintBorder(arg0: Graphics): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  213. def paintChildren(arg0: Graphics): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  214. def paintComponent(arg0: Graphics): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  215. def paintComponents(arg0: Graphics): Unit

    Permalink
    Definition Classes
    Container
  216. def paintImmediately(arg0: Rectangle): Unit

    Permalink
    Definition Classes
    JComponent
  217. def paintImmediately(arg0: Int, arg1: Int, arg2: Int, arg3: Int): Unit

    Permalink
    Definition Classes
    JComponent
  218. val panel: AppletAdPanel

    Permalink
  219. def paramString(): String

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JPanel → JComponent → Container → Component
  220. def prepareImage(arg0: Image, arg1: Int, arg2: Int, arg3: ImageObserver): Boolean

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

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

    Permalink
    Definition Classes
    JComponent → Container → Component
  223. def printAll(arg0: Graphics): Unit

    Permalink
    Definition Classes
    JComponent → Component
  224. def printBorder(arg0: Graphics): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  225. def printChildren(arg0: Graphics): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  226. def printComponent(arg0: Graphics): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  227. def printComponents(arg0: Graphics): Unit

    Permalink
    Definition Classes
    Container
  228. val procedures: ProceduresLite

    Permalink
  229. def processComponentEvent(arg0: ComponentEvent): Unit

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Component
  230. def processComponentKeyEvent(arg0: KeyEvent): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  231. def processContainerEvent(arg0: ContainerEvent): Unit

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

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

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

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

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

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Component
  237. def processKeyBinding(arg0: KeyStroke, arg1: KeyEvent, arg2: Int, arg3: Boolean): Boolean

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  238. def processKeyEvent(arg0: KeyEvent): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent → Component
  239. def processMouseEvent(arg0: MouseEvent): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent → Component
  240. def processMouseMotionEvent(arg0: MouseEvent): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent → Component
  241. def processMouseWheelEvent(arg0: MouseWheelEvent): Unit

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Component
  242. final def putClientProperty(arg0: Any, arg1: Any): Unit

    Permalink
    Definition Classes
    JComponent
  243. def registerKeyboardAction(arg0: ActionListener, arg1: KeyStroke, arg2: Int): Unit

    Permalink
    Definition Classes
    JComponent
  244. def registerKeyboardAction(arg0: ActionListener, arg1: String, arg2: KeyStroke, arg3: Int): Unit

    Permalink
    Definition Classes
    JComponent
  245. def remove(arg0: Component): Unit

    Permalink
    Definition Classes
    Container
  246. def remove(arg0: Int): Unit

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

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

    Permalink
    Definition Classes
    Container
  249. def removeAncestorListener(arg0: AncestorListener): Unit

    Permalink
    Definition Classes
    JComponent
  250. def removeComponentListener(arg0: ComponentListener): Unit

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Component
  260. def removeNotify(): Unit

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

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

    Permalink
    Definition Classes
    Component
  263. def removeVetoableChangeListener(arg0: VetoableChangeListener): Unit

    Permalink
    Definition Classes
    JComponent
  264. def repaint(arg0: Rectangle): Unit

    Permalink
    Definition Classes
    JComponent
  265. def repaint(arg0: Long, arg1: Int, arg2: Int, arg3: Int, arg4: Int): Unit

    Permalink
    Definition Classes
    JComponent → Component
  266. def repaint(arg0: Int, arg1: Int, arg2: Int, arg3: Int): Unit

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

    Permalink
    Definition Classes
    Component
  268. def repaint(): Unit

    Permalink
    Definition Classes
    Component
  269. def report(source: String): AnyRef

    Permalink

    Runs a NetLogo reporter.

    Runs a NetLogo reporter.

    This method must not be called from the AWT event queue thread or while that thread is blocked. It is an error to do so.

    source

    The reporter to run

    returns

    the result reported; may be of type java.lang.Integer, java.lang.Double, java.lang.Boolean, java.lang.String, org.nlogo.core.LogoList, org.nlogo.api.Agent, AgentSet, or Nobody

    Annotations
    @throws( classOf[CompilerException] )
    Exceptions thrown

    IllegalStateException if called from the AWT event queue thread

    org.nlogo.core.CompilerException if the code fails to compile

  270. def requestFocus(): Unit

    Permalink

    AppletPanel passes the focus request to the InterfacePanel

    AppletPanel passes the focus request to the InterfacePanel

    Definition Classes
    AppletPanel → JComponent → Component
  271. def requestFocus(arg0: Boolean): Boolean

    Permalink
    Definition Classes
    JComponent → Component
  272. def requestFocusInWindow(arg0: Boolean): Boolean

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent → Component
  273. def requestFocusInWindow(): Boolean

    Permalink
    Definition Classes
    JComponent → Component
  274. def resetKeyboardActions(): Unit

    Permalink
    Definition Classes
    JComponent
  275. def revalidate(): Unit

    Permalink
    Definition Classes
    JComponent → Component
  276. def scrollRectToVisible(arg0: Rectangle): Unit

    Permalink
    Definition Classes
    JComponent
  277. final def setActionMap(arg0: ActionMap): Unit

    Permalink
    Definition Classes
    JComponent
  278. def setAdVisible(visible: Boolean): Unit

    Permalink

    internal use only

  279. def setAlignmentX(arg0: Float): Unit

    Permalink
    Definition Classes
    JComponent
  280. def setAlignmentY(arg0: Float): Unit

    Permalink
    Definition Classes
    JComponent
  281. def setAutoscrolls(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent
  282. def setBackground(arg0: Color): Unit

    Permalink
    Definition Classes
    JComponent → Component
  283. def setBorder(arg0: Border): Unit

    Permalink
    Definition Classes
    JComponent
  284. def setBounds(arg0: Rectangle): Unit

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

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

    Permalink
    Definition Classes
    Component
  287. def setComponentPopupMenu(arg0: JPopupMenu): Unit

    Permalink
    Definition Classes
    JComponent
  288. def setComponentZOrder(arg0: Component, arg1: Int): Unit

    Permalink
    Definition Classes
    Container
  289. def setCursor(arg0: Cursor): Unit

    Permalink
    Definition Classes
    Component
  290. def setDebugGraphicsOptions(arg0: Int): Unit

    Permalink
    Definition Classes
    JComponent
  291. def setDoubleBuffered(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent
  292. def setDropTarget(arg0: DropTarget): Unit

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

    Permalink
    Definition Classes
    JComponent → Component
  294. def setFocusCycleRoot(arg0: Boolean): Unit

    Permalink
    Definition Classes
    Container
  295. def setFocusTraversalKeys(arg0: Int, arg1: Set[_ <: AWTKeyStroke]): Unit

    Permalink
    Definition Classes
    JComponent → Container → Component
  296. def setFocusTraversalKeysEnabled(arg0: Boolean): Unit

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

    Permalink
    Definition Classes
    Container
  298. final def setFocusTraversalPolicyProvider(arg0: Boolean): Unit

    Permalink
    Definition Classes
    Container
  299. def setFocusable(arg0: Boolean): Unit

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

    Permalink
    Definition Classes
    JComponent → Container → Component
  301. def setForeground(arg0: Color): Unit

    Permalink
    Definition Classes
    JComponent → Component
  302. def setIgnoreRepaint(arg0: Boolean): Unit

    Permalink
    Definition Classes
    Component
  303. def setInheritsPopupMenu(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent
  304. final def setInputMap(arg0: Int, arg1: InputMap): Unit

    Permalink
    Definition Classes
    JComponent
  305. def setInputVerifier(arg0: InputVerifier): Unit

    Permalink
    Definition Classes
    JComponent
  306. def setLayout(arg0: LayoutManager): Unit

    Permalink
    Definition Classes
    Container
  307. def setLocale(arg0: Locale): Unit

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

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

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

    Permalink
    Definition Classes
    JComponent → Component
  311. def setMinimumSize(arg0: Dimension): Unit

    Permalink
    Definition Classes
    JComponent → Component
  312. def setName(arg0: String): Unit

    Permalink
    Definition Classes
    Component
  313. def setOpaque(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent
  314. def setPreferredSize(arg0: Dimension): Unit

    Permalink
    Definition Classes
    JComponent → Component
  315. def setPrefix(url: URL): Unit

    Permalink

    sets the current working directory

    sets the current working directory

    url

    the directory as java.net.URL

  316. def setProcedures(source: String): Unit

    Permalink

    Replaces the contents of the Code tab.

    Replaces the contents of the Code tab. Does not recompile the model.

    source

    new contents

  317. def setRequestFocusEnabled(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent
  318. def setSize(arg0: Dimension): Unit

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

    Permalink
    Definition Classes
    Component
  320. def setToolTipText(arg0: String): Unit

    Permalink
    Definition Classes
    JComponent
  321. def setTransferHandler(arg0: TransferHandler): Unit

    Permalink
    Definition Classes
    JComponent
  322. def setUI(arg0: PanelUI): Unit

    Permalink
    Definition Classes
    JPanel
  323. def setUI(arg0: ComponentUI): Unit

    Permalink
    Attributes
    protected[javax.swing]
    Definition Classes
    JComponent
  324. def setVerifyInputWhenFocusTarget(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent
  325. def setVisible(arg0: Boolean): Unit

    Permalink
    Definition Classes
    JComponent → Component
  326. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  327. def toString(): String

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

    Permalink
    Definition Classes
    Component
  329. def transferFocusBackward(): Unit

    Permalink
    Definition Classes
    Component
  330. def transferFocusDownCycle(): Unit

    Permalink
    Definition Classes
    Container
  331. def transferFocusUpCycle(): Unit

    Permalink
    Definition Classes
    Component
  332. def unregisterKeyboardAction(arg0: KeyStroke): Unit

    Permalink
    Definition Classes
    JComponent
  333. def update(arg0: Graphics): Unit

    Permalink
    Definition Classes
    JComponent → Container → Component
  334. def updateUI(): Unit

    Permalink
    Definition Classes
    JPanel → JComponent
  335. def validate(): Unit

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

    Permalink
    Attributes
    protected[java.awt]
    Definition Classes
    Container
  337. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  340. val workspace: LiteWorkspace

    Permalink
  341. val world: World

    Permalink
    Attributes
    protected

Deprecated Value Members

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def bounds(): Rectangle

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  3. def countComponents(): Int

    Permalink
    Definition Classes
    Container
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  4. def deliverEvent(arg0: Event): Unit

    Permalink
    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  5. def disable(): Unit

    Permalink
    Definition Classes
    JComponent → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  6. def enable(): Unit

    Permalink
    Definition Classes
    JComponent → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  7. def enable(arg0: Boolean): Unit

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  8. def getNextFocusableComponent(): Component

    Permalink
    Definition Classes
    JComponent
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  9. def getPeer(): ComponentPeer

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  11. def handleEvent(arg0: Event): Boolean

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  12. def hide(): Unit

    Permalink
    Definition Classes
    JComponent → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  13. def insets(): Insets

    Permalink
    Definition Classes
    Container
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  15. def isFocusTraversable(): Boolean

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  16. def isManagingFocus(): Boolean

    Permalink
    Definition Classes
    JComponent
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  19. def layout(): Unit

    Permalink
    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  21. def location(): Point

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  23. def minimumSize(): Dimension

    Permalink
    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  31. def nextFocus(): Unit

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  32. def postEvent(arg0: Event): Boolean

    Permalink
    Definition Classes
    Component → MenuContainer
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  33. def preferredSize(): Dimension

    Permalink
    Definition Classes
    Container → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  34. def requestDefaultFocus(): Boolean

    Permalink
    Definition Classes
    JComponent
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    Permalink
    Definition Classes
    JComponent → Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  36. def resize(arg0: Dimension): Unit

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  37. def resize(arg0: Int, arg1: Int): Unit

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  38. def setNextFocusableComponent(arg0: Component): Unit

    Permalink
    Definition Classes
    JComponent
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  39. def show(arg0: Boolean): Unit

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  40. def show(): Unit

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  41. def size(): Dimension

    Permalink
    Definition Classes
    Component
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from LinkRoot

Inherited from LinkParent

Inherited from Handler

Inherited from JPanel

Inherited from Accessible

Inherited from JComponent

Inherited from HasGetTransferHandler

Inherited from Container

Inherited from Component

Inherited from Serializable

Inherited from MenuContainer

Inherited from ImageObserver

Inherited from AnyRef

Inherited from Any

Ungrouped