Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/comm/tcp/AsynchMessage.java')
-rw-r--r--framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/comm/tcp/AsynchMessage.java15
1 files changed, 12 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/comm/tcp/AsynchMessage.java b/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/comm/tcp/AsynchMessage.java
index 3a9685196..98ab059e0 100644
--- a/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/comm/tcp/AsynchMessage.java
+++ b/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/comm/tcp/AsynchMessage.java
@@ -17,15 +17,24 @@ public class AsynchMessage implements Serializable {
private static final long serialVersionUID = 3258689905679873075L;
Serializable data;
- protected AsynchMessage() {
+ /**
+ * @since 4.3
+ */
+ public AsynchMessage() {
//
}
- protected AsynchMessage(Serializable data) {
+ /**
+ * @since 4.3
+ */
+ public AsynchMessage(Serializable data) {
this.data = data;
}
- Serializable getData() {
+ /**
+ * @since 4.3
+ */
+ public Serializable getData() {
return data;
}

Back to the top