|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.ObjectLBJ2.parse.LinkedChild
public abstract class LinkedChild
A LinkedChild is the child of a LinkedVector.
LinkedVectors use the methods of this interface to maintain
links between parent and child.
LinkedVector,
Serialized Form| Field Summary | |
|---|---|
int |
end
The offset into the raw data input file at which this child ends. |
LinkedChild |
next
A link to the next child in the parent vector. |
LinkedVector |
parent
A link to this child's parent. |
LinkedChild |
previous
A link to the previous child in the parent vector. |
int |
start
The offset into the raw data input file at which this child starts. |
| Constructor Summary | |
|---|---|
protected |
LinkedChild()
Does nothing. |
|
LinkedChild(int s,
int e)
Constructor that sets the byte offsets of this child. |
protected |
LinkedChild(LinkedChild p)
Useful when the information that this child represents is parsed forwards. |
|
LinkedChild(LinkedChild p,
int s,
int e)
Useful when the information that this child represents is parsed forwards. |
| Method Summary | |
|---|---|
java.lang.Object |
clone()
Returns a shallow clone of this object. |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public LinkedVector parent
public LinkedChild previous
public LinkedChild next
public int start
public int end
| Constructor Detail |
|---|
protected LinkedChild()
protected LinkedChild(LinkedChild p)
p - The previous child in the parent vector.
public LinkedChild(int s,
int e)
s - The offset at which this child starts.e - The offset at which this child ends.
public LinkedChild(LinkedChild p,
int s,
int e)
p - The previous child in the parent vector.s - The offset at which this child starts.e - The offset at which this child ends.| Method Detail |
|---|
public java.lang.Object clone()
clone in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||