Class CommentsBlock
java.lang.Object
org.web3d.x3d.jsail.X3DConcreteElement
org.web3d.x3d.jsail.X3DConcreteStatement
org.web3d.x3d.jsail.Core.CommentsBlock
- All Implemented Interfaces:
X3DChildNode
,X3DNode
Utility class to enable adding one or more comment strings as a child node, treated as an X3D statement.
Warning: this is an abstract interface that cannot be instantiated as a concrete object. Java programmers typically only need to use concrete objects provided by the
Warning: this is an abstract interface that cannot be instantiated as a concrete object. Java programmers typically only need to use concrete objects provided by the
org.web3d.x3d.jsail
classes.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
String constant COMPONENT defines X3D component for comments: Core.static final int
Integer constant LEVEL provides default X3D Core component level for comments: 1.protected static final String
String constant NAME provides name of this element.Fields inherited from class org.web3d.x3d.jsail.X3DConcreteElement
CLASS_DEFAULT_VALUE, ID_DEFAULT_VALUE, STYLE_DEFAULT_VALUE, validationResult
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor for CommentsBlock.CommentsBlock
(String newComment) Constructor for CommentsBlock to initialize with initial comment string.CommentsBlock
(String[] newComments) Constructor for CommentsBlock to initialize with initial comments array.CommentsBlock
(ArrayList<String> newCommentsList) Constructor for CommentsBlock to initialize with initial comments list. -
Method Summary
Modifier and TypeMethodDescriptionaddComments
(String newComment) Add single comment to this CommentsBlock.addComments
(String[] newComments) Add comments as String[] array to this CommentsBlock.addComments
(ArrayList<String> newCommentsList) Add comments array as ArrayList of String values to this CommentsBlock.addComments
(CommentsBlock newCommentsBlock) Add CommentsBlock to this CommentsBlock.static String
cleanXmlCommentDelimiters
(String newComment) Utility method to adjust XML comment delimiters<!
clear()
Clear all comments from this CommentsBlock.findElementByNameValue
(String nameValue) Recursive method to provide object reference to node or statement by name attribute, if found as part of this element or in a contained element.findElementByNameValue
(String nameValue, String elementName) Recursive method to provide object reference to node or statement by name attribute, if found as part of this element or in a contained element.findNodeByDEF
(String DEFvalue) Recursive method to provide object reference to node by DEF, if found as this node or in a contained node.getAccessType
(String fieldName) Deprecated.final String
Defines X3D component for comments: Core.final int
Provides default X3D component level for comments: 1.final String
Provides name of this element: CommentsBlock.getFieldType
(String fieldName) Deprecated.Deprecated.boolean
hasElementByNameValue
(String nameValue, String elementName) Recursive method to determine whether node or statement with given name attribute is found, meaning both objects are attached to same scene graph.boolean
hasNodeByDEF
(String DEFvalue) Recursive method to determine whether node with DEFvalue is found, meaning both objects are attached to same scene graph.final void
Initialize this CommentsBlock instance.Deprecated.setMetadata
(X3DMetadataObject newValue) Deprecated.Deprecated.toStringClassicVRML
(int indentLevel) Recursive method to provide ClassicVRML string serialization.Provide CommentsBlock as ArrayList of string(s).String[]
Provide CommentsBlock as string array.toStringVRML97
(int indentLevel) Recursive method to provide VRML97 string serialization.toStringX3D
(int indentLevel) Recursive method to provide X3D string serialization of this model subgraph, utilizing XML encoding and conforming to X3D Canonical Form.validate()
Recursive method to validate this element plus all contained nodes and statements, using both datatype-specification value checks and regular expression (regex) checking of corresponding string values.Methods inherited from class org.web3d.x3d.jsail.X3DConcreteStatement
isNode, isStatement
Methods inherited from class org.web3d.x3d.jsail.X3DConcreteElement
addComments, clearParent, findAncestorElementByName, findAncestorProtoBody, findAncestorScene, findAncestorX3D, getCssClass, getCssStyle, getHtmlID, getPackageName, getParent, getValidationResult, hasAncestorElementByName, hasAncestorProtoBody, hasAncestorScene, hasAncestorX3D, hasParent, isValid, setConcreteCssClass, setConcreteCssStyle, setConcreteHtmlID, setParent, toStringClassicVRML, toStringVRML97, toStringX3D
-
Field Details
-
NAME
-
COMPONENT
String constant COMPONENT defines X3D component for comments: Core.- See Also:
-
LEVEL
public static final int LEVELInteger constant LEVEL provides default X3D Core component level for comments: 1.- See Also:
-
-
Constructor Details
-
CommentsBlock
public CommentsBlock()Constructor for CommentsBlock. -
CommentsBlock
Constructor for CommentsBlock to initialize with initial comment string. No need to include<!--
XML comment delimiters-->
around new comments.- Parameters:
newComment
- initial comment, with no comment delimiters needed
-
CommentsBlock
Constructor for CommentsBlock to initialize with initial comments array. No need to include<!--
XML comment delimiters-->
around new comments.- Parameters:
newComments
- [] initial comments, with no comment delimiters needed
-
CommentsBlock
-
-
Method Details
-
getElementName
Provides name of this element: CommentsBlock.- Specified by:
getElementName
in classX3DConcreteElement
- Returns:
- name of this element
-
getComponent
Defines X3D component for comments: Core.- Specified by:
getComponent
in classX3DConcreteElement
- Returns:
- X3D component for comments
-
getComponentLevel
public final int getComponentLevel()Provides default X3D component level for comments: 1.- Specified by:
getComponentLevel
in classX3DConcreteElement
- Returns:
- default X3D component level for comments
-
addComments
Add single comment to this CommentsBlock. No need to include<!--
XML comment delimiters-->
around new comments.- Specified by:
addComments
in classX3DConcreteElement
- Parameters:
newComment
- initial value, with no comment delimiters needed- Returns:
CommentsBlock
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
addComments
Add comments as String[] array to this CommentsBlock. No need to include<!--
XML comment delimiters-->
around new comments.- Specified by:
addComments
in classX3DConcreteElement
- Parameters:
newComments
- array of comments, with no comment delimiters needed- Returns:
CommentsBlock
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
addComments
Add comments array as ArrayList of String values to this CommentsBlock. No need to include<!--
XML comment delimiters-->
around new comments.- Parameters:
newCommentsList
- list of comments, with no comment delimiters needed- Returns:
CommentsBlock
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
addComments
Add CommentsBlock to this CommentsBlock. No need to include<!--
XML comment delimiters-->
around new comments.- Specified by:
addComments
in classX3DConcreteElement
- Parameters:
newCommentsBlock
- block of comments to add, with no comment delimiters needed- Returns:
CommentsBlock
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
toStrings
Provide CommentsBlock as string array. No need to include<!--
XML comment delimiters-->
around new comments.- Returns:
- all comments
-
toStringList
-
initialize
public final void initialize()Initialize this CommentsBlock instance.- Overrides:
initialize
in classX3DConcreteStatement
-
clear
Clear all comments from this CommentsBlock.- Returns:
CommentsBlock
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
cleanXmlCommentDelimiters
Utility method to adjust XML comment delimiters<!--
and-->
, also replace invalid "--
" characters with "- -
". Typically only used internally when exporting via toStringX3D() methods to avoid (illegal) nested XML comments.- Parameters:
newComment
- is comment to be cleaned- Returns:
- cleaned-up string with no problematic XML comment characters embedded
-
toStringX3D
Recursive method to provide X3D string serialization of this model subgraph, utilizing XML encoding and conforming to X3D Canonical Form.- Specified by:
toStringX3D
in classX3DConcreteElement
- Parameters:
indentLevel
- number of levels of indentation for this element- Returns:
- X3D string
- See Also:
-
toStringClassicVRML
Recursive method to provide ClassicVRML string serialization.- Specified by:
toStringClassicVRML
in classX3DConcreteElement
- Parameters:
indentLevel
- number of levels of indentation for this element- Returns:
- ClassicVRML string
- See Also:
-
toStringVRML97
Recursive method to provide VRML97 string serialization.- Specified by:
toStringVRML97
in classX3DConcreteElement
- Parameters:
indentLevel
- number of levels of indentation for this element- Returns:
- VRML97 string
- See Also:
-
findElementByNameValue
Recursive method to provide object reference to node or statement by name attribute, if found as part of this element or in a contained element. Elements with name fields include meta, Metadata* nodes, field/fieldValue, ProtoDeclare/ExternProtoDeclare/ProtoInstance, CAD and HAnim nodes.
Warning: first start with findAncestorScene() to check entire scene graph, or findAncestorX3D() to check entire model document.
Warning: more than one element may be found that has the same name, this method does not handle that case.- Specified by:
findElementByNameValue
in classX3DConcreteElement
- Parameters:
nameValue
- is value of the name field being searched for in this element and child elements(if any)- Returns:
- object reference to found element, null otherwise
- See Also:
-
findElementByNameValue
Recursive method to provide object reference to node or statement by name attribute, if found as part of this element or in a contained element. Elements with name fields include meta, Metadata* nodes, field/fieldValue, ProtoDeclare/ExternProtoDeclare/ProtoInstance, CAD and HAnim nodes.
Warning: first start with findAncestorScene() to check entire scene graph, or findAncestorX3D() to check entire model document.
Warning: more than one element may be found that has the same name, this method does not handle that case.- Specified by:
findElementByNameValue
in classX3DConcreteElement
- Parameters:
nameValue
- is value of the name field being searched for in this element and child elements(if any)elementName
- identifies the element of interest (meta MetadataString ProtoDeclare CADassembly ProtoInstance HAnimHumanoid etc.)- Returns:
- object reference to found element, null otherwise
- See Also:
-
hasElementByNameValue
Recursive method to determine whether node or statement with given name attribute is found, meaning both objects are attached to same scene graph.- Parameters:
nameValue
- is value of the name field being searched for in this element and child elements(if any)elementName
- identifies the element of interest (meta MetadataString ProtoDeclare CADassembly ProtoInstance HAnimHumanoid etc.)- Returns:
- whether node is found
- See Also:
-
findNodeByDEF
Recursive method to provide object reference to node by DEF, if found as this node or in a contained node.
Warning: first start with findAncestorScene() to check entire scene graph, or findAncestorX3D() to check entire model document.
Warning: more than one element may be found that has the same DEF, this method does not handle that case.- Specified by:
findNodeByDEF
in classX3DConcreteElement
- Parameters:
DEFvalue
- is value of the name field being searched for in this element and child elements(if any)- Returns:
- object reference to found node, null otherwise
- See Also:
-
hasNodeByDEF
Recursive method to determine whether node with DEFvalue is found, meaning both objects are attached to same scene graph.- Parameters:
DEFvalue
- is value of the name field being searched for in this element and child elements(if any)- Returns:
- whether node is found
- See Also:
-
validate
Recursive method to validate this element plus all contained nodes and statements, using both datatype-specification value checks and regular expression (regex) checking of corresponding string values. TODO document specific validation methods.- Specified by:
validate
in classX3DConcreteElement
- Returns:
- validation results (if any)
-
getMetadata
Deprecated.DO NOT USE: operation ignored since no such field exists for this element. This method has no effect, a stub method is necessary to implement X3DChildNode interface.- Specified by:
getMetadata
in interfaceX3DChildNode
- Specified by:
getMetadata
in interfaceX3DNode
- Returns:
- null, this method is deprecated and has no effect
- See Also:
-
setMetadata
Deprecated.DO NOT USE: operation ignored since no such field exists for this element. This method has no effect, a stub method is necessary to implement X3DChildNode interface.- Specified by:
setMetadata
in interfaceX3DChildNode
- Specified by:
setMetadata
in interfaceX3DNode
- Parameters:
newValue
- ignored- Returns:
- unmodified object, this method is deprecated and has no effect
- See Also:
-
setDEF
Deprecated.DO NOT USE: operation ignored since no such field exists for this element. This method has no effect, a stub method is necessary to implement X3DChildNode interface.- Parameters:
newValue
- ignored- Returns:
- unmodified object, this method is deprecated and has no effect
-
setUSE
Deprecated.DO NOT USE: operation ignored since no such field exists for this element. This method has no effect, a stub method is necessary to implement X3DChildNode interface.- Parameters:
newValue
- ignored- Returns:
- unmodified object, this method is deprecated and has no effect
-
getFieldType
Deprecated.DO NOT USE: operation ignored since no such field exists for this element. This method has no effect, it is only provided since a stub method is necessary to implement X3DChildNode interface.- Specified by:
getFieldType
in classX3DConcreteElement
- Parameters:
fieldName
- ignored- Returns:
- ConfigurationProperties#ERROR_UNKNOWN_FIELD_TYPE, this method is deprecated and has no effect
- See Also:
-
getAccessType
Deprecated.DO NOT USE: operation ignored since no such field exists for this element. This method has no effect, it is only provided since a stub method is necessary to implement X3DChildNode interface.- Specified by:
getAccessType
in classX3DConcreteElement
- Parameters:
fieldName
- ignored- Returns:
- ConfigurationProperties#ERROR_UNKNOWN_FIELD_ACCESSTYPE, this method is deprecated and has no effect
- See Also:
-