|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectariba.ui.aribaweb.util.AWBaseObject
ariba.ui.aribaweb.core.AWComponent
public class AWComponent
AWComponent is the key class for template/based interactive content. All "pages", page sub-sections, "wrappers", as well as most controls / widgets, and even control contructs are implemented as subclasses of AWComponent.
Components typically have atemplate
(.awl file) containing "bare
html text" mixed with references
to other embedded
AWComponents (or low level elements
).
These, in turn, have bindings
that refer back to the java instance
paired with the template (often using fieldpaths
to dynamically push/pull values and invoke actions.
Components may be either stateless
(pooled) or stateful (bound to their
page instance and stored in the session. (Typically pages, page sub-sections, and
particular rich components are stateful, while simple controls are stateless and
simply push/pull their needed state from their parent component via bindings).
Simple subclasses of AWComponent typically declare instance variables (possible public
for use in bindings) as well as action methods (which return reponses
which are usually just other page-level AWComponent instances for the next page (or null
to rerender the current page while reflecting any updated state).
Components participate in the AWCycleable
request handling lifecycle. In addition to
renderResponse(AWRequestContext, AWComponent)
, applyValues(AWRequestContext, AWComponent)
,
and invokeAction(AWRequestContext, AWComponent)
, an AWComponent also experiences
init()
, awake()
, sleep()
, and even possibly hibernate()
.
Nested Class Summary | |
---|---|
static interface |
AWComponent.RenderingFilter
Implementers of this interface can be used in conjunction with the rendering listener interfaces below, or anywhere to model a boolean predicate on the 3 rendering argus |
static interface |
AWComponent.RenderingListener
Allow listeners to monitor rendering 'lifecycle' events |
Nested classes/interfaces inherited from interface ariba.ui.aribaweb.core.AWResponseGenerating |
---|
AWResponseGenerating.ResponseSubstitution |
Field Summary | |
---|---|
static java.lang.Class |
ClassObject
|
static java.lang.String |
ComponentTemplateFileExtension
|
Fields inherited from class ariba.ui.aribaweb.util.AWBaseObject |
---|
AribaHashtableClass, AribaVectorClass, ClassClass, EmptyHashtable, EmptyMap, EmptyVector, False, IntegerClass, JavaHashtableClass, JavaMapClass, JavaVectorClass, LogHandling, NullObject, ObjectClass, StringClass, True, UndefinedObject, UndefinedString, UninitializedRealNumber |
Constructor Summary | |
---|---|
AWComponent()
|
Method Summary | ||
---|---|---|
void |
_topLevelApplyValues(AWRequestContext requestContext,
AWComponent component)
|
|
AWResponseGenerating |
_topLevelInvokeAction(AWRequestContext requestContext,
AWComponent component)
|
|
void |
_topLevelRenderResponse(AWRequestContext requestContext,
AWComponent component)
|
|
boolean |
allowEmbeddedKeyPaths()
|
|
boolean |
allowsWhitespaceCompression()
|
|
AWApplication |
application()
|
|
void |
applyValues(AWRequestContext requestContext,
AWComponent component)
The receiver should take any form values (or query string parameters) that it owns from the AWRequestContext.request() . |
|
AWComponent |
awcyclePageAndLog()
|
|
AWBinding |
bindingForName(java.lang.String bindingName)
|
|
AWBinding |
bindingForName(java.lang.String bindingName,
boolean recursive)
|
|
AWBindingDictionary |
bindings()
|
|
boolean |
booleanValueForBinding(AWBinding binding)
|
|
boolean |
booleanValueForBinding(AWBinding binding,
boolean defaultValue)
|
|
boolean |
booleanValueForBinding(java.lang.String bindingName)
|
|
boolean |
booleanValueForBinding(java.lang.String bindingName,
boolean defaultValue)
|
|
java.lang.String |
browserMaxWidth()
|
|
java.lang.String |
browserMinWidth()
|
|
AWCharacterEncoding |
characterEncoding()
|
|
void |
clearValidationError(java.lang.Object errorKey)
Clear an error in the error manager. |
|
java.util.TimeZone |
clientTimeZone()
|
|
java.lang.Object |
componentConfiguration(java.lang.String configName)
|
|
AWComponentDefinition |
componentDefinition()
|
|
AWFastStringBuffer |
componentPath(java.lang.String separatorString)
|
|
AWComponentReference |
componentReference()
|
|
static AWComponent |
createPageWithName(java.lang.String pageName)
|
|
static AWTemplateParser |
defaultTemplateParser()
|
|
AWElement |
determineInstance(java.lang.String elementName,
java.util.Map bindingsHashtable,
java.lang.String templateName,
int lineNumber)
|
|
AWElement |
determineInstance(java.lang.String elementName,
java.lang.String translatedClassName,
java.util.Map bindingsHashtable,
java.lang.String templateName,
int lineNumber)
|
|
java.util.Map |
dict()
|
|
java.lang.Object |
dict(java.lang.String key)
|
|
void |
dict(java.lang.String key,
java.lang.Object value)
|
|
double |
doubleValueForBinding(AWBinding binding)
|
|
double |
doubleValueForBinding(java.lang.String bindingName)
|
|
double |
doubleValueForBinding(java.lang.String bindingName,
double defaultValue)
|
|
AWEncodedString |
encodedStringValueForBinding(AWBinding binding)
|
|
AWEncodedString |
encodedStringValueForBinding(java.lang.String bindingName)
|
|
void |
ensureAwake(AWPage page)
|
|
void |
ensureFieldValuesClear()
|
|
AWEnvironmentStack |
env()
|
|
AWErrorManager |
errorManager()
Retrieve the error manager for the page. |
|
AWEncodedString |
escapeAttribute(AWEncodedString attributeValue)
|
|
AWEncodedString |
escapeString(java.lang.Object object)
|
|
AWEncodedString |
escapeUnsafeString(java.lang.Object object)
|
|
java.util.Map |
extendedFields()
|
|
AWFormValueManager |
formValueManager()
|
|
AWResponse |
generateResponse()
|
|
AWResponse |
generateResponse(AWResponse response)
|
|
AWResponse |
generateResponse(AWResponse response,
AWRequestContext requestContext)
|
|
java.lang.String |
generateStringContents()
|
|
AWParameters |
getAWParameter()
Allows for parameter field value syntax in AWL files. |
|
java.lang.Object |
getDrivingBusinessObject()
Note: Should be overwritten in sub-classing page-level components. |
|
int |
getFoldInSituOnWindowSizeParam()
Get window size on which In Situ pane will fold. |
|
UIRenderMeta.RenderVersion |
getPageRenderVersion()
Note: Can be overwritten by sub-class if page is always rendered in a certain version. |
|
AWComponent |
getThis()
This method allows for access to the current component fromthe .awl via "$this" |
|
boolean |
hasBinding(AWBinding binding)
|
|
boolean |
hasBinding(java.lang.String bindingName)
|
|
boolean |
hasContentForTagName(java.lang.String tagName)
|
|
boolean |
hasContentNamed(java.lang.String name)
|
|
boolean |
hasMultipleTemplates()
|
|
boolean |
hasSubTemplateNamed(java.lang.String templateName)
Deprecated. Use hasContentNamed() |
|
javax.servlet.http.HttpSession |
httpSession()
|
|
void |
init()
|
|
void |
init(AWComponentReference componentReference,
AWComponent parentComponent,
AWPage page)
|
|
static void |
initTemplateResourceManager(AWResourceManager manager)
We need to use the same resource manager for loading templates. |
|
int |
intValueForBinding(AWBinding binding)
|
|
int |
intValueForBinding(java.lang.String bindingName)
|
|
int |
intValueForBinding(java.lang.String bindingName,
int defaultValue)
|
|
AWResponseGenerating |
invokeAction(AWRequestContext requestContext,
AWComponent component)
The receiver should determine if it is the intended recipient of the current action (by checking the AWRequestContext.request() AWRequest.senderId() ) and,
if so, handle the action and return the result. |
|
boolean |
isBidirectional()
|
|
boolean |
isBrowserMicrosoft()
|
|
boolean |
isClientPanel()
|
|
boolean |
isMacintosh()
|
|
boolean |
isRenderAW5()
|
|
boolean |
isStateless()
Overridden by AWComponent subclasses to indicate whether component instances should be preserved with the page/session (i.e. |
|
boolean |
isStrictTagNaming()
|
|
boolean |
isUserCommunityEnabled()
Provide ability to turn off community features at the application level |
|
boolean |
isValidationEnabled()
|
|
java.lang.String |
languageDirection()
|
|
java.lang.String |
languageLeft()
|
|
java.lang.String |
languageRight()
|
|
AWTemplate |
loadTemplate()
|
|
java.lang.String |
localizedJavaString(int stringId,
java.lang.String originalString)
|
|
AWBacktrackState |
markBacktrackState()
|
|
java.lang.String |
name()
|
|
java.lang.String |
namePath()
|
|
void |
notifyChange()
Only applicable to pageComponents. |
|
AWBindingDictionary |
otherBindings()
|
|
AWStringDictionary |
otherBindingsValues()
|
|
AWPage |
page()
|
|
AWComponent |
pageComponent()
|
|
|
pageWithClass(java.lang.Class<T> tClass)
|
|
|
pageWithClass(java.lang.Class<T> tClass,
java.util.Map<java.lang.String,java.lang.Object> assignments)
|
|
AWComponent |
pageWithName(java.lang.String pageName)
|
|
AWComponent |
pageWithName(java.lang.String pageName,
java.util.Map<java.lang.String,java.lang.Object> assignments)
|
|
AWComponent |
parent()
|
|
void |
postTakeValueActions()
Deprecated. |
|
java.util.Locale |
preferredLocale()
|
|
void |
recordBacktrackState(int userBacktrackState)
|
|
void |
recordBacktrackState(java.lang.Object userBacktrackState)
|
|
void |
recordValidationError(AWErrorInfo error)
Record an error to the error manager. |
|
void |
recordValidationError(java.lang.Object errorKey,
java.lang.String errorMessage,
java.lang.Object errantValue)
Record an error to the error manager. |
|
void |
recordValidationError(java.lang.Throwable exception,
java.lang.Object errorKey,
java.lang.Object errantValue)
Record an error to the error manager. |
|
void |
recordValidationErrors(java.util.List errors)
Record multiple error to the error manager. |
|
void |
recordValidationWarning(java.lang.Object errorKey,
java.lang.String warningMessage)
Record an error to the error manager. |
|
AWPageRedirect |
redirectToPage(AWComponent destinationPage)
|
|
static void |
registerRenderingListener(AWComponent.RenderingListener listener)
|
|
static void |
registerXmlNodeWithName(java.lang.String xmlNodeName)
|
|
void |
removeBacktrackState()
|
|
void |
renderResponse(AWRequestContext requestContext,
AWComponent component)
The receiver should render its content to the AWRequestContext.response() |
|
AWResponseGenerating |
replacementResponse()
|
|
AWRequest |
request()
|
|
AWRequestContext |
requestContext()
|
|
boolean |
requiresPreGlidCompatibility()
Override this method to restore the behavior in this page to that of aribaweb-7. |
|
java.lang.String |
resourceClassName()
Get the name of the class where we get our resources from. |
|
AWResourceManager |
resourceManager()
|
|
AWResponse |
response()
|
|
java.lang.Object |
restoreFromBacktrackState(java.lang.Object userBacktrackState)
|
|
AWSession |
session()
|
|
AWSession |
session(boolean required)
|
|
void |
setCharacterEncoding(AWCharacterEncoding characterEncoding)
|
|
void |
setClientPanel(boolean yn)
|
|
void |
setClientTimeZone(java.util.TimeZone timeZone)
|
|
void |
setComponentConfiguration(java.lang.String configName,
java.lang.Object config)
|
|
static void |
setDefaultTemplateParser(AWTemplateParser templateParser)
|
|
void |
setEnv(AWEnvironmentStack environmentStack)
|
|
void |
setPerfDestinationInfo()
Sets the destination page for performance monitoring. |
|
void |
setPreferredLocale(java.util.Locale locale)
|
|
void |
setResourceManager(AWResourceManager resourceManager)
|
|
void |
setTemplateParser(AWTemplateParser templateParser)
|
|
void |
setupForNextCycle(AWComponentReference componentReference,
AWComponent parentComponent,
AWPage page)
|
|
void |
setValueForBinding(boolean booleanValue,
AWBinding binding)
|
|
void |
setValueForBinding(boolean booleanValue,
java.lang.String bindingName)
|
|
void |
setValueForBinding(int intValue,
AWBinding binding)
|
|
void |
setValueForBinding(int intValue,
java.lang.String bindingName)
|
|
void |
setValueForBinding(java.lang.Object objectValue,
AWBinding binding)
|
|
void |
setValueForBinding(java.lang.Object objectValue,
java.lang.String bindingName)
|
|
boolean |
shouldCachePage()
|
|
boolean |
shouldCloseElements()
|
|
AWStringsThunk |
strings()
|
|
java.lang.String |
stringValueForBinding(AWBinding binding)
|
|
java.lang.String |
stringValueForBinding(java.lang.String bindingName)
|
|
java.lang.String |
stringValueForBinding(java.lang.String bindingName,
java.lang.String defaultValue)
|
|
java.lang.String[] |
supportedBindingNames()
|
|
AWTemplate |
template()
|
|
java.lang.String |
templateName()
|
|
AWTemplateParser |
templateParser()
|
|
AWResource |
templateResource()
|
|
static AWResourceManager |
templateResourceManager()
|
|
void |
truncateBacktrackState()
|
|
void |
truncateBacktrackState(AWBacktrackState backtrackStateMark)
|
|
java.lang.String |
urlForResourceNamed(java.lang.String resourceName)
|
|
java.lang.String |
urlForResourceNamed(java.lang.String resourceName,
boolean useFullUrl)
|
|
java.lang.String |
urlForResourceNamed(java.lang.String resourceName,
boolean useFullUrl,
boolean isVersioned)
|
|
boolean |
useXmlEscaping()
|
|
java.lang.Object |
valueForBinding(AWBinding binding)
|
|
java.lang.Object |
valueForBinding(java.lang.String bindingName)
|
|
java.lang.Object |
valueForBinding(java.lang.String bindingName,
java.lang.Object defaultValue)
|
|
AWXmlNode |
xml()
|
Methods inherited from class ariba.ui.aribaweb.util.AWBaseObject |
---|
debugString, getFieldValue, isKindOfClass, localizedJavaString, logString, logWarning, setFieldValue |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface ariba.ui.aribaweb.util.AWObject |
---|
getFieldValue, isKindOfClass, setFieldValue |
Field Detail |
---|
public static final java.lang.String ComponentTemplateFileExtension
public static final java.lang.Class ClassObject
Constructor Detail |
---|
public AWComponent()
Method Detail |
---|
public AWElement determineInstance(java.lang.String elementName, java.lang.String translatedClassName, java.util.Map bindingsHashtable, java.lang.String templateName, int lineNumber)
determineInstance
in interface AWCycleableReference
public AWElement determineInstance(java.lang.String elementName, java.util.Map bindingsHashtable, java.lang.String templateName, int lineNumber)
determineInstance
in interface AWCycleableReference
public void init(AWComponentReference componentReference, AWComponent parentComponent, AWPage page)
public void init()
init
in interface AWObject
init
in class AWBaseObject
public AWComponent parent()
public AWComponent getThis()
public void setupForNextCycle(AWComponentReference componentReference, AWComponent parentComponent, AWPage page)
public AWComponentDefinition componentDefinition()
public boolean hasMultipleTemplates()
public static void setDefaultTemplateParser(AWTemplateParser templateParser)
public static AWTemplateParser defaultTemplateParser()
public AWTemplateParser templateParser()
public void setTemplateParser(AWTemplateParser templateParser)
public AWComponentReference componentReference()
public static AWComponent createPageWithName(java.lang.String pageName)
public void ensureFieldValuesClear()
ensureFieldValuesClear
in class AWBaseObject
public AWRequestContext requestContext()
public AWApplication application()
public AWPage page()
public AWComponent pageComponent()
public java.lang.Object getDrivingBusinessObject()
public UIRenderMeta.RenderVersion getPageRenderVersion()
public boolean isRenderAW5()
public AWSession session()
public AWSession session(boolean required)
public javax.servlet.http.HttpSession httpSession()
public AWRequest request()
public AWResponse response()
public boolean isBrowserMicrosoft()
public boolean isMacintosh()
public java.lang.String browserMinWidth()
public java.lang.String browserMaxWidth()
public AWResourceManager resourceManager()
public void setResourceManager(AWResourceManager resourceManager)
public void setCharacterEncoding(AWCharacterEncoding characterEncoding)
public AWCharacterEncoding characterEncoding()
public void setClientTimeZone(java.util.TimeZone timeZone)
public java.util.TimeZone clientTimeZone()
public void setEnv(AWEnvironmentStack environmentStack)
public AWEnvironmentStack env()
public void setPreferredLocale(java.util.Locale locale)
public java.util.Locale preferredLocale()
public java.lang.String name()
public java.lang.String namePath()
public java.lang.String templateName()
public java.lang.String resourceClassName()
public AWTemplate template()
public boolean isClientPanel()
public void setClientPanel(boolean yn)
public AWResponseGenerating replacementResponse()
replacementResponse
in interface AWResponseGenerating.ResponseSubstitution
public boolean isValidationEnabled()
public boolean isStrictTagNaming()
public boolean allowsWhitespaceCompression()
public AWResource templateResource()
public static AWResourceManager templateResourceManager()
public static void initTemplateResourceManager(AWResourceManager manager)
public boolean hasContentNamed(java.lang.String name)
public boolean hasSubTemplateNamed(java.lang.String templateName)
public boolean hasContentForTagName(java.lang.String tagName)
public AWTemplate loadTemplate()
public boolean allowEmbeddedKeyPaths()
public boolean isStateless()
public void applyValues(AWRequestContext requestContext, AWComponent component)
AWCycleable
AWRequestContext.request()
.
applyValues
in interface AWCycleable
requestContext
- the context for the current request.component
- the current parent componentpublic AWResponseGenerating invokeAction(AWRequestContext requestContext, AWComponent component)
AWCycleable
AWRequestContext.request()
AWRequest.senderId()
) and,
if so, handle the action and return the result.
invokeAction
in interface AWCycleable
requestContext
- the context for the current request.component
- the current parent component
public void renderResponse(AWRequestContext requestContext, AWComponent component)
AWCycleable
AWRequestContext.response()
renderResponse
in interface AWCycleable
requestContext
- the context for the current request.component
- the current parent componentpublic void _topLevelApplyValues(AWRequestContext requestContext, AWComponent component)
public AWResponseGenerating _topLevelInvokeAction(AWRequestContext requestContext, AWComponent component)
public void _topLevelRenderResponse(AWRequestContext requestContext, AWComponent component)
public AWEncodedString escapeAttribute(AWEncodedString attributeValue)
public AWEncodedString escapeString(java.lang.Object object)
public AWEncodedString escapeUnsafeString(java.lang.Object object)
public boolean shouldCloseElements()
public boolean useXmlEscaping()
public void recordBacktrackState(java.lang.Object userBacktrackState)
public void recordBacktrackState(int userBacktrackState)
public void removeBacktrackState()
public void truncateBacktrackState()
public void truncateBacktrackState(AWBacktrackState backtrackStateMark)
public AWBacktrackState markBacktrackState()
public java.lang.Object restoreFromBacktrackState(java.lang.Object userBacktrackState)
public boolean shouldCachePage()
public AWResponse generateResponse(AWResponse response, AWRequestContext requestContext)
public AWResponse generateResponse(AWResponse response)
public AWResponse generateResponse()
generateResponse
in interface AWResponseGenerating
public java.lang.String generateStringContents()
generateStringContents
in interface AWResponseGenerating
public void ensureAwake(AWPage page)
public java.lang.String[] supportedBindingNames()
public AWBindingDictionary bindings()
public AWBindingDictionary otherBindings()
public AWStringDictionary otherBindingsValues()
public AWBinding bindingForName(java.lang.String bindingName)
public AWBinding bindingForName(java.lang.String bindingName, boolean recursive)
public boolean hasBinding(java.lang.String bindingName)
public boolean hasBinding(AWBinding binding)
public double doubleValueForBinding(AWBinding binding)
public double doubleValueForBinding(java.lang.String bindingName)
public double doubleValueForBinding(java.lang.String bindingName, double defaultValue)
public int intValueForBinding(AWBinding binding)
public int intValueForBinding(java.lang.String bindingName)
public int intValueForBinding(java.lang.String bindingName, int defaultValue)
public boolean booleanValueForBinding(AWBinding binding)
public boolean booleanValueForBinding(java.lang.String bindingName)
public boolean booleanValueForBinding(AWBinding binding, boolean defaultValue)
public boolean booleanValueForBinding(java.lang.String bindingName, boolean defaultValue)
public java.lang.Object valueForBinding(AWBinding binding)
public java.lang.Object valueForBinding(java.lang.String bindingName)
public java.lang.Object valueForBinding(java.lang.String bindingName, java.lang.Object defaultValue)
public java.lang.String stringValueForBinding(AWBinding binding)
public java.lang.String stringValueForBinding(java.lang.String bindingName)
public java.lang.String stringValueForBinding(java.lang.String bindingName, java.lang.String defaultValue)
public AWEncodedString encodedStringValueForBinding(AWBinding binding)
public AWEncodedString encodedStringValueForBinding(java.lang.String bindingName)
public void setValueForBinding(java.lang.Object objectValue, AWBinding binding)
public void setValueForBinding(java.lang.Object objectValue, java.lang.String bindingName)
public void setValueForBinding(int intValue, AWBinding binding)
public void setValueForBinding(int intValue, java.lang.String bindingName)
public void setValueForBinding(boolean booleanValue, AWBinding binding)
public void setValueForBinding(boolean booleanValue, java.lang.String bindingName)
public static void registerXmlNodeWithName(java.lang.String xmlNodeName)
public AWXmlNode xml()
public AWComponent pageWithName(java.lang.String pageName)
public AWComponent pageWithName(java.lang.String pageName, java.util.Map<java.lang.String,java.lang.Object> assignments)
public <T> T pageWithClass(java.lang.Class<T> tClass)
public <T> T pageWithClass(java.lang.Class<T> tClass, java.util.Map<java.lang.String,java.lang.Object> assignments)
public java.lang.Object componentConfiguration(java.lang.String configName)
public void setComponentConfiguration(java.lang.String configName, java.lang.Object config)
public java.util.Map extendedFields()
public java.util.Map dict()
public void dict(java.lang.String key, java.lang.Object value)
public java.lang.Object dict(java.lang.String key)
public AWPageRedirect redirectToPage(AWComponent destinationPage)
public AWComponent awcyclePageAndLog()
public AWFastStringBuffer componentPath(java.lang.String separatorString)
public AWErrorManager errorManager()
public AWFormValueManager formValueManager()
public void recordValidationError(java.lang.Object errorKey, java.lang.String errorMessage, java.lang.Object errantValue)
errorKey
- The object that identifies the error. This is typically a string.errorMessage
- The message that describes the error.errantValue
- The unparsable value that the user entered. Since
the parsing failed, we cannot store this value in
the field. We stash it away here so we can display
in the UI later.public void recordValidationError(AWErrorInfo error)
error
- The error object.public void recordValidationErrors(java.util.List errors)
errors
- a list of AWErrorInfo objectspublic void recordValidationError(java.lang.Throwable exception, java.lang.Object errorKey, java.lang.Object errantValue)
exception
- errorKey
- The object that identifies the error. This is typically a string.errantValue
- The unparsable value that the user entered. Since
the parsing failed, we cannot store this value in
the field. We stash it away here so we can display
in the UI later.public void recordValidationWarning(java.lang.Object errorKey, java.lang.String warningMessage)
errorKey
- The object that identifies the error. This is typically a string.warningMessage
- The message that describes the warning.public void clearValidationError(java.lang.Object errorKey)
errorKey
- public java.lang.String localizedJavaString(int stringId, java.lang.String originalString)
public AWStringsThunk strings()
public java.lang.String urlForResourceNamed(java.lang.String resourceName)
public java.lang.String urlForResourceNamed(java.lang.String resourceName, boolean useFullUrl)
public java.lang.String urlForResourceNamed(java.lang.String resourceName, boolean useFullUrl, boolean isVersioned)
public boolean isBidirectional()
public java.lang.String languageDirection()
public java.lang.String languageRight()
public java.lang.String languageLeft()
public boolean requiresPreGlidCompatibility()
public void postTakeValueActions()
public AWParameters getAWParameter()
public void notifyChange()
public void setPerfDestinationInfo()
public boolean isUserCommunityEnabled()
public int getFoldInSituOnWindowSizeParam()
public static void registerRenderingListener(AWComponent.RenderingListener listener)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |