tests/libjava-mauve/src/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoImpl.java
branchjk_new_structure
changeset 1541 75c2e24dea9a
parent 1540 92ac284961c1
child 1542 be11db817bcf
equal deleted inserted replaced
1540:92ac284961c1 1541:75c2e24dea9a
     1 /*
       
     2 * This file is part of the CORBA 2_3 tests, the test executable
       
     3 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
       
     4 * Due large number of the required classes, they are moved into
       
     5 * a separate package, Valuetype.
       
     6 *
       
     7 * @author Audrius Meskauskas (AudriusA@bluewin.ch)
       
     8 */
       
     9 
       
    10 package gnu.testlet.org.omg.CORBA_2_3.ORB.Valtype;
       
    11 
       
    12 public class cmInfoImpl
       
    13   extends cmInfo
       
    14 {
       
    15   public cmInfoImpl()
       
    16   {
       
    17     name = message = "Unitialised";
       
    18   }
       
    19 
       
    20   public cmInfoImpl(String a, String b)
       
    21   {
       
    22     name = a;
       
    23     message = b;
       
    24   }
       
    25 
       
    26   public String _toString()
       
    27   {
       
    28     return name+";"+message;
       
    29   }
       
    30 }