NextApp Echo
App Container 1.1.4

nextapp.echoservlet
Interface PaneUI

All Known Implementing Classes:
AbstractPaneUI, ContentPaneUI

public interface PaneUI

An interface implemented by services that may be held in a ContainerPane. Classes that implement this interface must extend ComponentPeer.


Field Summary
static java.lang.String SCROLLING_ALWAYS
          A scrolling attribute indicating that scrollbars should always be displayed.
static java.lang.String SCROLLING_AUTO
          A scrolling attribute indicating that scrollbars should be displayed if necessary.
static java.lang.String SCROLLING_NEVER
          A scrolling attribute indicating that scrollbars should never be displayed.
 
Method Summary
 Id getId()
          Returns the underlying Service Id for the pane.
 java.lang.String getScrolling()
          Returns the scrolling property of the pane.
 java.lang.String getUri(Connection conn)
          Returns the URI from which the pane's service may be rendered.
 

Field Detail

SCROLLING_AUTO

public static final java.lang.String SCROLLING_AUTO
A scrolling attribute indicating that scrollbars should be displayed if necessary.

See Also:
Constant Field Values

SCROLLING_ALWAYS

public static final java.lang.String SCROLLING_ALWAYS
A scrolling attribute indicating that scrollbars should always be displayed.

See Also:
Constant Field Values

SCROLLING_NEVER

public static final java.lang.String SCROLLING_NEVER
A scrolling attribute indicating that scrollbars should never be displayed.

See Also:
Constant Field Values
Method Detail

getId

public Id getId()
Returns the underlying Service Id for the pane.

Returns:
The underlying Service Id for the pane.

getScrolling

public java.lang.String getScrolling()
Returns the scrolling property of the pane.

Returns:
The scrolling property of the pane, one of the following values:
  • SCROLLING_AUTO
  • SCROLLING_ALWAYS
  • SCROLLING_NEVER

getUri

public java.lang.String getUri(Connection conn)
Returns the URI from which the pane's service may be rendered.

Parameters:
conn - The connection from which to derive the URI.
Returns:
The URI from which the pane's service may be rendered.

NextApp Echo
App Container 1.1.4