Package org.web3d.x3d.jsail.Core
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
public class CommentsBlock extends X3DConcreteStatement implements X3DChildNode
Utility class to enable adding one or more comment strings as a child node, treated as an X3D statement.
- See Also:
- X3D Scene Authoring Hints
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCOMPONENTString constant COMPONENT defines X3D component for comments: Core.static intLEVELInteger constant LEVEL provides default X3D Core component level for comments: 1.protected static java.lang.StringNAMEString constant NAME provides name of this element. -
Constructor Summary
Constructors Constructor Description CommentsBlock()Constructor for CommentsBlock.CommentsBlock(java.lang.String newComment)Constructor for CommentsBlock to initialize with initial comment string.CommentsBlock(java.lang.String[] newComments)Constructor for CommentsBlock to initialize with initial comments array.CommentsBlock(java.util.ArrayList<java.lang.String> newCommentsList)Constructor for CommentsBlock to initialize with initial comments list. -
Method Summary
Modifier and Type Method Description CommentsBlockaddComments(java.lang.String newComment)Add single comment to this CommentsBlock.CommentsBlockaddComments(java.lang.String[] newComments)Add comments as String[] array to this CommentsBlock.CommentsBlockaddComments(java.util.ArrayList<java.lang.String> newCommentsList)Add comments array as ArrayList of String values to this CommentsBlock.CommentsBlockaddComments(CommentsBlock newCommentsBlock)Add CommentsBlock to this CommentsBlock.static java.lang.StringcleanXmlCommentDelimiters(java.lang.String newComment)Utility method to adjust XML comment delimiters<!CommentsBlockclear()Clear all comments from this CommentsBlock.X3DConcreteElementfindElementByNameValue(java.lang.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.X3DConcreteElementfindElementByNameValue(java.lang.String nameValue, java.lang.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.X3DConcreteNodefindNodeByDEF(java.lang.String DEFvalue)Recursive method to provide object reference to node by DEF, if found as this node or in a contained node.java.lang.StringgetAccessType(java.lang.String fieldName)Deprecated.java.lang.StringgetComponent()Defines X3D component for comments: Core.intgetComponentLevel()Provides default X3D component level for comments: 1.java.lang.StringgetElementName()Provides name of this element: CommentsBlock.java.lang.StringgetFieldType(java.lang.String fieldName)Deprecated.X3DMetadataObjectgetMetadata()Deprecated.booleanhasElementByNameValue(java.lang.String nameValue, java.lang.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.booleanhasNodeByDEF(java.lang.String DEFvalue)Recursive method to determine whether node with DEFvalue is found, meaning both objects are attached to same scene graph.voidinitialize()Initialize this CommentsBlock instance.CommentsBlocksetCssClass(java.lang.String newValue)Deprecated.CommentsBlocksetDEF(java.lang.String newValue)Deprecated.CommentsBlocksetMetadata(X3DMetadataObject newValue)Deprecated.CommentsBlocksetUSE(java.lang.String newValue)Deprecated.java.lang.StringtoStringClassicVRML(int indentLevel)Recursive method to provide ClassicVRML string serialization.java.util.ArrayList<java.lang.String>toStringList()Provide CommentsBlock as ArrayList of string(s).java.lang.String[]toStrings()Provide CommentsBlock as string array.java.lang.StringtoStringVRML97(int indentLevel)Recursive method to provide VRML97 string serialization.java.lang.StringtoStringX3D(int indentLevel)Recursive method to provide X3D string serialization of this model subgraph, utilizing XML encoding and conforming to X3D Canonical Form.java.lang.Stringvalidate()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.X3DConcreteElement
clearParentObject, findAncestorElementByName, findAncestorProtoBody, findAncestorSceneObject, findAncestorX3DObject, getPackageName, getParentObject, getValidationResult, hasAncestorElementByName, hasAncestorProtoBody, hasAncestorSceneObject, hasAncestorX3DObject, hasParentObject, isValid, setParentObject, toStringClassicVRML, toStringVRML97, toStringX3D
-
Field Details
-
NAME
protected static final java.lang.String NAMEString constant NAME provides name of this element.- See Also:
- Constant Field Values
-
COMPONENT
public static final java.lang.String COMPONENTString constant COMPONENT defines X3D component for comments: Core.- See Also:
- Constant Field Values
-
LEVEL
public static final int LEVELInteger constant LEVEL provides default X3D Core component level for comments: 1.- See Also:
- Constant Field Values
-
-
Constructor Details
-
CommentsBlock
public CommentsBlock()Constructor for CommentsBlock. -
CommentsBlock
public CommentsBlock(java.lang.String newComment)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
public CommentsBlock(java.lang.String[] newComments)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
public CommentsBlock(java.util.ArrayList<java.lang.String> newCommentsList)Constructor for CommentsBlock to initialize with initial comments list. No need to include<!--XML comment delimiters-->around new comments.- Parameters:
newCommentsList- initial comments, with no comment delimiters needed
-
-
Method Details
-
getElementName
public final java.lang.String getElementName()Provides name of this element: CommentsBlock.- Specified by:
getElementNamein classX3DConcreteElement- Returns:
- name of this element
-
getComponent
public final java.lang.String getComponent()Defines X3D component for comments: Core.- Specified by:
getComponentin classX3DConcreteElement- Returns:
- X3D component for comments
-
getComponentLevel
public final int getComponentLevel()Provides default X3D component level for comments: 1.- Specified by:
getComponentLevelin 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:
addCommentsin 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:
addCommentsin 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:
addCommentsin 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
public java.lang.String[] toStrings()Provide CommentsBlock as string array. No need to include<!--XML comment delimiters-->around new comments.- Returns:
- all comments
-
toStringList
public java.util.ArrayList<java.lang.String> toStringList()Provide CommentsBlock as ArrayList of string(s). No need to include<!--XML comment delimiters-->around new comments.- Returns:
- all comments
-
initialize
public final void initialize()Initialize this CommentsBlock instance.- Overrides:
initializein 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
public static java.lang.String cleanXmlCommentDelimiters(java.lang.String newComment)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
public java.lang.String toStringX3D(int indentLevel)Recursive method to provide X3D string serialization of this model subgraph, utilizing XML encoding and conforming to X3D Canonical Form.- Specified by:
toStringX3Din classX3DConcreteElement- Parameters:
indentLevel- number of levels of indentation for this element- Returns:
- X3D string
- See Also:
X3DObject.FILE_EXTENSION_X3D,X3DObject.FILE_EXTENSION_XML,X3DObject.toStringXML(),X3DObject.toFileXML(String),X3DObject.toFileX3D(String), X3D XML Encoding, X3D Compressed Binary Encoding: X3D Canonical Form, X3D Canonicalization (C14N) Tool
-
toStringClassicVRML
public java.lang.String toStringClassicVRML(int indentLevel)Recursive method to provide ClassicVRML string serialization.- Specified by:
toStringClassicVRMLin classX3DConcreteElement- Parameters:
indentLevel- number of levels of indentation for this element- Returns:
- ClassicVRML string
- See Also:
X3DObject.FILE_EXTENSION_CLASSICVRML, X3D Resources: Virtual Reality Modeling Language (VRML) 97, Extensible 3D (X3D) encodings Part 2: Classic VRML encoding, Extensible 3D (X3D) encodings Part 2: Classic VRML encoding, Annex A: Grammar
-
toStringVRML97
public java.lang.String toStringVRML97(int indentLevel)Recursive method to provide VRML97 string serialization.- Specified by:
toStringVRML97in classX3DConcreteElement- Parameters:
indentLevel- number of levels of indentation for this element- Returns:
- VRML97 string
- See Also:
X3DObject.FILE_EXTENSION_VRML97, X3D Resources: Virtual Reality Modeling Language (VRML) 97, Virtual Reality Modeling Language (VRML) 97 specification, VRML 97 v2.1 Amendment
-
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 findAncestorSceneObject() to check entire scene graph, or findAncestorX3DObject() 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:
findElementByNameValuein 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:
findNodeByDEF(String),X3DConcreteElement.hasAncestorSceneObject(),X3DConcreteElement.findAncestorX3DObject()
-
findElementByNameValue
public X3DConcreteElement findElementByNameValue(java.lang.String nameValue, java.lang.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. Elements with name fields include meta, Metadata* nodes, field/fieldValue, ProtoDeclare/ExternProtoDeclare/ProtoInstance, CAD and HAnim nodes.
Warning: first start with findAncestorSceneObject() to check entire scene graph, or findAncestorX3DObject() 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:
findElementByNameValuein 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:
findNodeByDEF(String),X3DConcreteElement.hasAncestorSceneObject(),X3DConcreteElement.findAncestorX3DObject()
-
hasElementByNameValue
public boolean hasElementByNameValue(java.lang.String nameValue, java.lang.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.- 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:
findElementByNameValue(String, String)
-
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 findAncestorSceneObject() to check entire scene graph, or findAncestorX3DObject() 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:
findNodeByDEFin 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:
findElementByNameValue(String),X3DConcreteElement.hasAncestorSceneObject(),X3DConcreteElement.findAncestorX3DObject()
-
hasNodeByDEF
public boolean hasNodeByDEF(java.lang.String DEFvalue)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:
findNodeByDEF(String)
-
validate
public java.lang.String 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.- Specified by:
validatein 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:
getMetadatain interfaceX3DChildNode- Specified by:
getMetadatain interfaceX3DNode- Returns:
- null, this method is deprecated and has no effect
- See Also:
- X3D Scene Authoring Hints: Metadata Nodes
-
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:
setMetadatain interfaceX3DChildNode- Specified by:
setMetadatain interfaceX3DNode- Parameters:
newValue- ignored- Returns:
- unmodified object, this method is deprecated and has no effect
- See Also:
- X3D Scene Authoring Hints: Metadata Nodes
-
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
-
setCssClass
Deprecated. -
getFieldType
@Deprecated public java.lang.String getFieldType(java.lang.String fieldName)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:
getFieldTypein classX3DConcreteElement- Parameters:
fieldName- ignored- Returns:
- ConfigurationProperties#ERROR_UNKNOWN_FIELD_TYPE, this method is deprecated and has no effect
- See Also:
ConfigurationProperties.ERROR_UNKNOWN_FIELD_TYPE
-
getAccessType
@Deprecated public java.lang.String getAccessType(java.lang.String fieldName)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:
getAccessTypein classX3DConcreteElement- Parameters:
fieldName- ignored- Returns:
- ConfigurationProperties#ERROR_UNKNOWN_FIELD_ACCESSTYPE, this method is deprecated and has no effect
- See Also:
ConfigurationProperties.ERROR_UNKNOWN_FIELD_ACCESSTYPE
-