Documentation Archive Developer
Search
[an error occurred while processing this directive] PATH  Documentation > WebObjects 4.5 > EOInterface Reference

Table of Contents

EOView


Inherits from:
javax.swing.JPanel : javax.swing.JComponent : java.awt.Container : java.awt.Component : Object
Implements:
NSDisposable
Package:
com.apple.client.eointerface


Class Description


EOView is a subclass of javax.swing.JPanel that uses an EOViewLayout object to provide its layout logic.


Note: This class doesn't exist in the com.apple.yellow.eointerface package.

For more information on the layout behavior of EOView objects, see the EOViewLayout class specification.




Interfaces Implemented


NSDisposable
dispose


Constructors



EOView

public EOView(String debuggingHint)

Creates and returns a new EOView object. The debuggingHint argument is a string you can use to uniquely identify the view. When the form is instantiated from a nib file, the debuggingHint is a string generated by Interface Builder.

See Also: debuggingHint




Instance Methods



add

public java.awt.Component add(java.awt.Component aComponent)

Adds aComponent to the receiver and returns it.

debuggingHint

public String debuggingHint()

Returns the receiver's debugging hint, a string that uniquely identifies the EOView.

See Also: EOView constructor



setBounds

public void setBounds(int x, int y, int width, int height)

See the method description for setBounds in Sun's JPanel class documentation.

toString

public String toString()

Returns the receiver's debuggingHint.


Table of Contents