org.proteios.io.mzdata
Class MzDataImpSampleNameBlock
java.lang.Object
org.proteios.io.mzdata.MzDataImpCommon
org.proteios.io.mzdata.MzDataImpCommonDc
org.proteios.io.mzdata.MzDataImpCommonAnnotation
org.proteios.io.mzdata.MzDataImpCommonPeakListSet
org.proteios.io.mzdata.MzDataImpSampleNameBlock
public class MzDataImpSampleNameBlock
- extends MzDataImpCommonPeakListSet
This class processes a "sampleName" XML block in an mzData file.
An mzData file contains information on a mass spectrometry experiment.
The mzData file is first vaildated against the XML Schema Definition
file mzdata.xsd. If the file is valid, its content is parsed and
selected information stored in Proteios.
The mzData file is parsed using cursor-based XML stream parsing.
The StAX (Stream API for XML) parser finds start and stop (end)
tags, which are then processed. Element attributes are located
in the start tag, and elements of simple types are stored directly
after the start tag is read. For more complex elements, values of
attributes and sub-elements are collected in temporary variables,
until the end tag is reached, and the colelcted contents are stored.
Example: XML tag tagData
At start tag: Method thisTagElementStart() stores attribute values.
Between tags: tagData is stored in temporary StringBuffer.
At end tag: Method thisTagItem() processes collected data.
Tag data may be exchanged for a start/end tag pair, etc.
- Version:
- 2.0
- Author:
- Olle
- Last modified
- $Date: 2009-04-09 08:48:11 +0200 (Thu, 09 Apr 2009) $
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MzDataImpSampleNameBlock
public MzDataImpSampleNameBlock(SessionControl sc)
- Default constructor.
- Parameters:
sc -
getSampleName
public String getSampleName()
- Get the sample name.
- Returns:
- sampleName String the sampleName
setSampleName
public void setSampleName(String sampleName)
- Set the sample name.
- Parameters:
sampleName - String the sampleName to set.
blockEnd
public void blockEnd(javax.xml.stream.XMLStreamReader parser)
throws javax.xml.stream.XMLStreamException
- Processes end of XML block processed by this class.
Extracts data in block.
This method should be overidden by the
daughter class if it needs to process
the XML end element of the block.
- Overrides:
blockEnd in class MzDataImpCommon
- Parameters:
parser - XMLStreamReader instance.
- Throws:
javax.xml.stream.XMLStreamException - If there is an XML Stream related error