Package lumis.doui.render
Class RenderDataValue
- java.lang.Object
-
- lumis.doui.render.CharSequenceRenderableWrapper
-
- lumis.doui.render.RenderDataValue
-
- All Implemented Interfaces:
CharSequence
,IRenderable
@StableMinor(version="14.0", sinceVersion="4.0") public class RenderDataValue extends CharSequenceRenderableWrapper
Allows aCharSequence
value to be used directly as the render data.- Since:
- 4.0.10
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Field Summary
-
Fields inherited from class lumis.doui.render.CharSequenceRenderableWrapper
charSequence, renderable
-
-
Constructor Summary
Constructors Constructor Description RenderDataValue(CharSequence value)
Creates a new RenderDataValue that uses the givenCharSequence
asgetDisplayString(IRenderer)
andgetRenderData(IRenderer)
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayString(IRenderer renderer)
Returns the string to be displayed for representing this instance, when a short display is required.String
getRenderData(IRenderer renderer)
Returns the data of this object in a standard xml format.-
Methods inherited from class lumis.doui.render.CharSequenceRenderableWrapper
charAt, length, subSequence, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.CharSequence
chars, codePoints
-
-
-
-
Constructor Detail
-
RenderDataValue
public RenderDataValue(CharSequence value)
Creates a new RenderDataValue that uses the givenCharSequence
asgetDisplayString(IRenderer)
andgetRenderData(IRenderer)
. If the given value is null, an empty string will be used instead.- Parameters:
value
- the string.- Since:
- 4.0.10
-
-
Method Detail
-
getRenderData
public String getRenderData(IRenderer renderer) throws PortalException
Description copied from interface:IRenderable
Returns the data of this object in a standard xml format.- Specified by:
getRenderData
in interfaceIRenderable
- Overrides:
getRenderData
in classCharSequenceRenderableWrapper
- Parameters:
renderer
- the renderer object that will use the returned render data.- Returns:
- the xml data for this object.
- Throws:
PortalException
-
getDisplayString
public String getDisplayString(IRenderer renderer) throws PortalException
Description copied from interface:IRenderable
Returns the string to be displayed for representing this instance, when a short display is required.- Specified by:
getDisplayString
in interfaceIRenderable
- Overrides:
getDisplayString
in classCharSequenceRenderableWrapper
- Parameters:
renderer
- the renderer object that will use the returned render data.- Returns:
- the string to be used to friendly display this instance.
- Throws:
PortalException
-
-