summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/parser/payloadparsers/CapsInfoParser.java')
-rw-r--r--src/com/isode/stroke/parser/payloadparsers/CapsInfoParser.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/com/isode/stroke/parser/payloadparsers/CapsInfoParser.java b/src/com/isode/stroke/parser/payloadparsers/CapsInfoParser.java
new file mode 100644
index 0000000..de0053f
--- /dev/null
+++ b/src/com/isode/stroke/parser/payloadparsers/CapsInfoParser.java
@@ -0,0 +1,40 @@
+package com.isode.stroke.parser.payloadparsers;
+
+import com.isode.stroke.parser.GenericPayloadParser;
+import com.isode.stroke.parser.AttributeMap;
+import com.isode.stroke.elements.CapsInfo;
+import com.isode.stroke.base.NotNull;
+
+public class CapsInfoParser extends GenericPayloadParser<CapsInfo> {
+
+ private int level_ = 0;
+
+ /**
+ * CapsInfoParser();
+ */
+ public CapsInfoParser() {
+ super(new CapsInfo());
+ }
+
+ /**
+ * @param attributes, notnull.
+ */
+ public void handleStartElement(String element, String ns, AttributeMap attributes) {
+ NotNull.exceptIfNull(attributes, "attributes");
+ if (this.level_ == 0) {
+ getPayloadInternal().setHash(attributes.getAttribute("hash"));
+ getPayloadInternal().setNode(attributes.getAttribute("node"));
+ getPayloadInternal().setVersion(attributes.getAttribute("ver"));
+ }
+ ++level_;
+ }
+
+ public void handleEndElement(String element, String ns) {
+ --level_;
+ }
+
+ public void handleCharacterData(String data) {
+
+ }
+
+}