Class LJSNode
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Azos.CodeAnalysis.Laconfig
Assembly: Azos.dll
Syntax
public abstract class LJSNode
Properties
Data
Attaches arbitrary data, such as the one used by the generator
Declaration
public object Data { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Name
Node name - name of attribute or section
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Parent
Parent node that this node is in
Declaration
public LJSSectionNode Parent { get; }
Property Value
Type | Description |
---|---|
LJSSectionNode |
StartToken
The first laconic content token that starts this node
Declaration
public LaconfigToken StartToken { get; }
Property Value
Type | Description |
---|---|
LaconfigToken |
Methods
Print(StringBuilder, Int32)
Prints tree into string builder
Declaration
public abstract void Print(StringBuilder builder, int indent)
Parameters
Type | Name | Description |
---|---|---|
System.Text.StringBuilder | builder | |
System.Int32 | indent |