aboutsummaryrefslogtreecommitdiff
path: root/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoDefaultFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoDefaultFactory.java')
-rw-r--r--gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoDefaultFactory.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoDefaultFactory.java b/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoDefaultFactory.java
new file mode 100644
index 00000000..fc2fb2c2
--- /dev/null
+++ b/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoDefaultFactory.java
@@ -0,0 +1,26 @@
+/*
+* This file is part of the CORBA 2_3 tests, the test executable
+* class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
+* Due large number of the required classes, they are moved into
+* a separate package, Valuetype.
+*
+* @author Audrius Meskauskas (AudriusA@bluewin.ch)
+*/
+
+package gnu.testlet.org.omg.CORBA_2_3.ORB.Valtype;
+
+import java.io.Serializable;
+
+public class cmInfoDefaultFactory
+ implements cmInfoValueFactory
+{
+ public cmInfo create(String name, String message)
+ {
+ return new cmInfoImpl(name, message);
+ }
+
+ public Serializable read_value(org.omg.CORBA_2_3.portable.InputStream is)
+ {
+ return is.read_value(new cmInfoImpl());
+ }
+} \ No newline at end of file