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/base
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/base')
-rw-r--r--src/com/isode/stroke/base/SafeByteArray.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/isode/stroke/base/SafeByteArray.java b/src/com/isode/stroke/base/SafeByteArray.java
index e35ef35..af43261 100644
--- a/src/com/isode/stroke/base/SafeByteArray.java
+++ b/src/com/isode/stroke/base/SafeByteArray.java
@@ -12,4 +12,7 @@ import com.isode.stroke.base.ByteArray;
*/
public class SafeByteArray extends ByteArray {
+ public SafeByteArray(String s) {
+ super(s);
+ }
} \ No newline at end of file