summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2015-06-19 03:44:50 (GMT)
committerTarun Gupta <tarun1995gupta@gmail.com>2015-06-23 14:53:15 (GMT)
commitbc9dade982d8e8efe66c0fc814dafd8bf079e689 (patch)
treedd71e35abbf05a191a530d9d6ed421c5c0a1e5dd /src/com/isode/stroke/parser
parent45e302d354d663eed61de58325ac162182497046 (diff)
downloadstroke-bc9dade982d8e8efe66c0fc814dafd8bf079e689.zip
stroke-bc9dade982d8e8efe66c0fc814dafd8bf079e689.tar.bz2
Add ComponentHandshake Element.
Adds ComponentHandshake Element, its parser and Serializer. Adds ComponentHandshake Generator. Adds TopLevelElement. Updates SafeByteArray. License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: Test added for ComponentHandshakeGenerator, which passes. Change-Id: If3026a3db2207e6c65aa2306fee56d8dd5dee86f
Diffstat (limited to 'src/com/isode/stroke/parser')
-rw-r--r--src/com/isode/stroke/parser/ComponentHandshakeParser.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/com/isode/stroke/parser/ComponentHandshakeParser.java b/src/com/isode/stroke/parser/ComponentHandshakeParser.java
new file mode 100644
index 0000000..153a62d
--- /dev/null
+++ b/src/com/isode/stroke/parser/ComponentHandshakeParser.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright (c) 2010 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+/*
+ * Copyright (c) 2015 Tarun Gupta.
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+package com.isode.stroke.parser;
+
+import com.isode.stroke.parser.GenericElementParser;
+import com.isode.stroke.parser.AttributeMap;
+import com.isode.stroke.elements.ComponentHandshake;
+import com.isode.stroke.base.NotNull;
+
+public class ComponentHandshakeParser extends GenericElementParser<ComponentHandshake> {
+
+ private int depth = 0;
+ private String text = "";
+
+ public ComponentHandshakeParser() {
+ super(ComponentHandshake.class);
+ }
+
+ /**
+ * @param element.
+ * @param ns.
+ * @param attributes.
+ */
+ public void handleStartElement(String element, String ns, AttributeMap attributes) {
+ ++depth;
+ }
+
+ /**
+ * @param element.
+ * @param ns.
+ */
+ public void handleEndElement(String element, String ns) {
+ --depth;
+ if (depth == 0) {
+ getElementGeneric().setData(text);
+ }
+ }
+
+ /**
+ * @param text, NotNull.
+ */
+ public void handleCharacterData(String text) {
+ NotNull.exceptIfNull(text, "text");
+ this.text += text;
+ }
+} \ No newline at end of file