1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/*
* File: ParentTest_Impl.java
* Symbol: Overload.ParentTest-v1.0
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for Overload.ParentTest
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
package Overload;
import sidl.ClassInfo;
import sidl.BaseInterface;
import sidl.BaseClass;
// DO-NOT-DELETE splicer.begin(Overload.ParentTest._imports)
// Put additional imports here...
// DO-NOT-DELETE splicer.end(Overload.ParentTest._imports)
/**
* Symbol "Overload.ParentTest" (version 1.0)
*
* This class is used as the work-horse, returning the value passed
* in.
*/
public class ParentTest_Impl extends ParentTest
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest._data)
// Put additional private data here...
// DO-NOT-DELETE splicer.end(Overload.ParentTest._data)
static {
// DO-NOT-DELETE splicer.begin(Overload.ParentTest._load)
// Put load function implementation here...
// DO-NOT-DELETE splicer.end(Overload.ParentTest._load)
}
/**
* User defined constructor
*/
public ParentTest_Impl(long IORpointer){
super(IORpointer);
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.ParentTest)
// add construction details here
// DO-NOT-DELETE splicer.end(Overload.ParentTest.ParentTest)
}
/**
* User defined destructing method
*/
public void finalize() throws Throwable{
super.finalize();
// DO-NOT-DELETE splicer.begin(Overload.ParentTest._dtor)
// add destruction details here
// DO-NOT-DELETE splicer.end(Overload.ParentTest._dtor)
}
// user defined static methods: (none)
// user defined non-static methods:
/**
* Method: getValue[]
*/
public int getValue_Impl ()
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValue)
// insert implementation here
return 1;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValue)
}
/**
* Method: getValue[Int]
*/
public int getValueInt_Impl (
/*in*/ int v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueInt)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueInt)
}
/**
* Method: getValue[Bool]
*/
public boolean getValueBool_Impl (
/*in*/ boolean v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueBool)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueBool)
}
/**
* Method: getValue[Double]
*/
public double getValueDouble_Impl (
/*in*/ double v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueDouble)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueDouble)
}
/**
* Method: getValue[Dcomplex]
*/
public sidl.DoubleComplex getValueDcomplex_Impl (
/*in*/ sidl.DoubleComplex v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueDcomplex)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueDcomplex)
}
/**
* Method: getValue[Float]
*/
public float getValueFloat_Impl (
/*in*/ float v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueFloat)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueFloat)
}
/**
* Method: getValue[Fcomplex]
*/
public sidl.FloatComplex getValueFcomplex_Impl (
/*in*/ sidl.FloatComplex v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueFcomplex)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueFcomplex)
}
/**
* Method: getValue[String]
*/
public java.lang.String getValueString_Impl (
/*in*/ java.lang.String v )
{
// DO-NOT-DELETE splicer.begin(Overload.ParentTest.getValueString)
// insert implementation here
return v;
// DO-NOT-DELETE splicer.end(Overload.ParentTest.getValueString)
}
// DO-NOT-DELETE splicer.begin(Overload.ParentTest._misc)
// Put miscellaneous code here
// DO-NOT-DELETE splicer.end(Overload.ParentTest._misc)
} // end class ParentTest
|