FlowLayoutPresentationContext Class

com.bea.netuix.servlets.controls.layout
FlowLayoutPresentationContext Class

public class FlowLayoutPresentationContext

    extends LayoutPresentationContext

Used to provide access to presentation-related attributes specific to the FlowLayout in use. Typically used during portal rendering via look and feel skeleton files (e.g. flowlayout.jsp).

Related Topics

FlowLayoutPresentationContext.getFlowLayoutPresentationContext(HttpServletRequest)


Hierarchy
Object
  ControlContext
    PresentationContext
      LayoutPresentationContext
        FlowLayoutPresentationContext
All Implemented Interfaces

Serializable

Field Summary

protected static final String
CLASS_NAME
String
   
Fields from  com.bea.netuix.servlets.controls.layout.LayoutPresentationContext
CLASS_NAME
 
Fields from  com.bea.netuix.servlets.controls.ControlContext
debug
 

Constructor Summary

 

Method Summary

public static FlowLayoutPresentationContext
getFlowLayoutPresentationContext(HttpServletRequest request)
This is a convenience method for returning a reference to the one and only FlowLayoutPresentationContext.
public String
getOrientation()
Returns the text of the orientation attribute specified in the .layout file that corresponds to this FlowLayout portal component.
public boolean
isHorizontal()
public boolean
isVertical()
 
Methods from  com.bea.netuix.servlets.controls.layout.LayoutPresentationContext
getLayoutPresentationContext, getType
 
Methods from  com.bea.netuix.servlets.controls.PresentationContext
getChildren, getChildren, getFirstChild, getParsedProperties, getPresentationClass, getPresentationId, getPresentationStyle, getProperties, getProperty, getProperty, getPropertyAsBoolean, getPropertyAsInt, getResolvedLocale, getTagName, isVisible, setVisible
 
Methods from  com.bea.netuix.servlets.controls.ControlContext
getContextFromRequest, getContextKey, getControl, getRequestKey, getUniqueId, removeContextFromRequest, setContextInRequest
 
Methods from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
   

Field Detail

CLASS_NAME

protected static final String CLASS_NAME

 

Constructor Detail

 

Method Detail

getFlowLayoutPresentationContext(HttpServletRequest) Method

public static FlowLayoutPresentationContext getFlowLayoutPresentationContext(HttpServletRequest request)
This is a convenience method for returning a reference to the one and only FlowLayoutPresentationContext. Note this method will only work if called from within a portal (typically, from the flowlayout.jsp skeleton). This method may return null if called when no appropriate context exists, but such a context should safely exist when being fetched from the associated skeleton JSP during normal portal rendering.

Parameters

request
The current HTTPServletRequest instance

Returns

A reference to the current FlowLayoutPresentationContext, if any

getOrientation() Method

public String getOrientation()
Returns the text of the orientation attribute specified in the .layout file that corresponds to this FlowLayout portal component. Will be either FlowLayout.ORIENT_HORIZONTAL or FlowLayout.ORIENT_VERTICAL.

Returns

The text of the orientation attribute as a String. If unspecified, FlowLayout.ORIENT_VERTICAL is returned.

Related Topics

FlowLayout#ORIENT_HORIZONTAL
FlowLayout#ORIENT_VERTICAL


isHorizontal() Method

public boolean isHorizontal()

Returns

true if the orientation attribute is set to "horizontal"

isVertical() Method

public boolean isVertical()

Returns

true if the orientation attribute is set to "vertical"