Provides common functionality needed by implementers of the Segment interface.
Implementing classes should define all the fields for the segment they represent in their constructor. The add() method is useful for this purpose.
For example the constructor for an MSA segment might contain the following code:
this.add(new ID(), true, 2, null);
this.add(new ST(), true, 20, null);
...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|