Class/Object

org.nlogo.lite

InterfaceComponent

Related Docs: object InterfaceComponent | package lite

Permalink

class InterfaceComponent extends AppletPanel with LinkChild

This component is a wrapper around the contents of the interface panel that can be embedded in another application.

Once created, an InterfaceComponent can't be garbage collected, so you should open successive models in the same InterfaceComponent, rather than making new instances.

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

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

Instance Constructors

  1. new InterfaceComponent(frame: Frame)

    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

    Definition Classes
    AppletPanel
    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

    Definition Classes
    AppletPanel
    Annotations
    @throws( classOf[CompilerException] )
    Exceptions thrown

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

    See also

    #command

  36. def compile(): Unit

    Permalink

    Recompiles the model.

    Recompiles the model. Useful after calling setProcedures().

    See also

    #setProcedures

  37. def computeVisibleRect(arg0: Rectangle): Unit

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    AppletPanel
  43. def createLogger(username: String): Unit

    Permalink
  44. def createToolTip(): JToolTip

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

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

    Permalink
    Definition Classes
    Component
  47. val defaultOwner: SimpleJobOwner

    Permalink
    Definition Classes
    AppletPanel
  48. final def disableEvents(arg0: Long): Unit

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  55. def exportWorld(writer: PrintWriter): Unit

    Permalink

    writer

    to writer the contents of the export world feature

  56. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    Container
  59. def findWidget(name: String, tpe: Class[_]): Widget

    Permalink
  60. def firePropertyChange(arg0: String, arg1: Char, arg2: Char): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink

    internal use only

    internal use only

    Definition Classes
    AppletPanel
    Annotations
    @throws( ... )
  102. def getFocusCycleRootAncestor(): Container

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    LinkRoot
  128. def getLinkParent(): Null

    Permalink

    internal use only

    internal use only

    Definition Classes
    InterfaceComponent → LinkChild
  129. def getListeners[T <: EventListener](arg0: Class[T]): Array[T]

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Component
  143. def getPlotContentsAsImage(name: String): RenderedImage

    Permalink

    returns a graphical image of the current contents of the plot with the given name.

    returns a graphical image of the current contents of the plot with the given name. This image can be saved to disk, displayed to the user later, etc.

    name

    the display name of the widget to reveal.

  144. def getPopupLocation(arg0: MouseEvent): Point

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

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

    Permalink

    Returns the contents of the Code tab.

    Returns the contents of the Code tab.

    returns

    contents of Code tab

    Definition Classes
    AppletPanel
  147. def getPropertyChangeListeners(arg0: String): Array[PropertyChangeListener]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    JComponent
  164. def getViewImage: RenderedImage

    Permalink

    returns the current contents of the 2D view.

    returns the current contents of the 2D view. This image can be saved to disk, displayed to the user later, etc.

  165. def getVisibleRect(): Rectangle

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

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

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

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

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

    Permalink

    internal use only

    internal use only

    Definition Classes
    AppletPanelHandler
  171. def hasFocus(): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  173. def hideWidget(name: String): Unit

    Permalink

    hides a particular widget.

    hides a particular widget. This method makes the specified widget invisible in the NetLogo interface panel. It does not completely remove the widget, which can later be brought back with showWidget(). This method uses the "display name" to identify the widget. Display names are not necessarily unique within a particular model. It is only safe to use this method on widgets with unique display names. Otherwise the behavior is unspecified.

    name

    the display name of the widget to hide.

    See also

    #hideWidget

  174. val iP: InterfacePanelLite

    Permalink
    Definition Classes
    AppletPanel
  175. def imageUpdate(arg0: Image, arg1: Int, arg2: Int, arg3: Int, arg4: Int, arg5: Int): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Component
  212. 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.

    Definition Classes
    AppletPanel
  213. val liteEditorFactory: LiteEditorFactory

    Permalink
    Attributes
    protected
    Definition Classes
    AppletPanel
  214. var logger: Logger

    Permalink
  215. def makeWidget(widget: Widget): Unit

    Permalink

    Adds new widget to Interface tab given its specification, in the same format found in a saved model.

  216. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  219. def open(path: String): Unit

    Permalink

    Opens a model stored in a file.

    Opens a model stored in a file.

    path

    the path (absolute or relative) of the NetLogo model to open.

    Annotations
    @throws( classOf[java.io.IOException] ) @throws( ... )
  220. def openFromURI(uri: URI): Unit

    Permalink

    Opens a model stored in a string.

    Opens a model stored in a string.

    Definition Classes
    AppletPanel
    Annotations
    @throws( classOf[InvalidVersionException] )
  221. def paint(arg0: Graphics): Unit

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    JComponent
  229. val panel: AppletAdPanel

    Permalink
    Definition Classes
    AppletPanel
  230. def paramString(): String

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

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

    Permalink
    Definition Classes
    Component
  233. def pressButton(name: String): Unit

    Permalink

    Simulates a button press in the current model, exactly as if the user had pressed the button.

    Simulates a button press in the current model, exactly as if the user had pressed the button. If the button is a "once" button, this method does not return until the button has popped back up. (For "forever" buttons, it returns immediately.)

  234. def print(arg0: Graphics): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    Container
  240. val procedures: ProceduresLite

    Permalink
    Definition Classes
    AppletPanel
  241. def processComponentEvent(arg0: ComponentEvent): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Component
  281. 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

    Definition Classes
    AppletPanel
    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

  282. def reportAndCallback(code: String, handler: InvocationListener): Unit

    Permalink

    evaluates a reporter and return the value to continuation object.

    evaluates a reporter and return the value to continuation object. This is a convenience method for evaluating reporters on the event thread. Since it is an error to call report() from the event thread, this method creates a new thread to call report() and then passes the result to the given InvocationListener.

    This method may be called from any thread, including the AWT Event Thread.

  283. 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
  284. def requestFocus(arg0: Boolean): Boolean

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

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

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

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

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

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

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

    Permalink

    internal use only

    internal use only

    Definition Classes
    AppletPanel
  292. def setAlignmentX(arg0: Float): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink

    sets the current working directory

    sets the current working directory

    url

    the directory as java.net.URL

    Definition Classes
    AppletPanel
  329. 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

    Definition Classes
    AppletPanel
  330. def setRequestFocusEnabled(arg0: Boolean): Unit

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    JComponent → Component
  339. def showWidget(name: String): Unit

    Permalink

    reveals a particular widget.

    reveals a particular widget. This method makes the specified widget visible in the NetLogo interface panel, if it has previously been hidden by a call to hideWidget(). This method uses the "display name" to identify the widget. Display names are not necessarily unique within a particular model. It is only safe to use this method on widgets with unique display names. Otherwise the behavior is unspecified.

    name

    the display name of the widget to reveal.

    See also

    #hideWidget

  340. def startLogging(reader: Reader, username: String): Unit

    Permalink

    Starts NetLogo logging using the given file and username

    Starts NetLogo logging using the given file and username

    reader

    a reader that contains an XML properties file as defined by the log4j dtd

    username

    user defined username, this should be a unique identifier

  341. def startLogging(properties: String, username: String): Unit

    Permalink

    Starts NetLogo logging using the given file and username

    Starts NetLogo logging using the given file and username

    properties

    path to the XML properties file as defined by the log4j dtd

    username

    user defined username, this should be a unique identifier

  342. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AppletPanel
  357. val world: World

    Permalink
    Attributes
    protected
    Definition Classes
    AppletPanel

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 LinkChild

Inherited from AppletPanel

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