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
|
/*
* File: D_Impl.java
* Symbol: Inherit.D-v1.1
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for Inherit.D
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
package Inherit;
import Inherit.A;
import sidl.ClassInfo;
import sidl.BaseInterface;
import sidl.BaseClass;
// DO-NOT-DELETE splicer.begin(Inherit.D._imports)
// Put additional imports here...
// DO-NOT-DELETE splicer.end(Inherit.D._imports)
/**
* Symbol "Inherit.D" (version 1.1)
*/
public class D_Impl extends D
{
// DO-NOT-DELETE splicer.begin(Inherit.D._data)
// Put additional private data here...
// DO-NOT-DELETE splicer.end(Inherit.D._data)
static {
// DO-NOT-DELETE splicer.begin(Inherit.D._load)
// Put load function implementation here...
// DO-NOT-DELETE splicer.end(Inherit.D._load)
}
/**
* User defined constructor
*/
public D_Impl(long IORpointer){
super(IORpointer);
// DO-NOT-DELETE splicer.begin(Inherit.D.D)
// add construction details here
// DO-NOT-DELETE splicer.end(Inherit.D.D)
}
/**
* User defined destructing method
*/
public void finalize() throws Throwable{
super.finalize();
// DO-NOT-DELETE splicer.begin(Inherit.D._dtor)
// add destruction details here
// DO-NOT-DELETE splicer.end(Inherit.D._dtor)
}
// user defined static methods: (none)
// user defined non-static methods:
/**
* Method: a[]
*/
public java.lang.String a_Impl ()
{
// DO-NOT-DELETE splicer.begin(Inherit.D.a)
// insert implementation here
return new java.lang.String("D.a");
// DO-NOT-DELETE splicer.end(Inherit.D.a)
}
/**
* Method: d[]
*/
public java.lang.String d_Impl ()
{
// DO-NOT-DELETE splicer.begin(Inherit.D.d)
// insert implementation here
return new java.lang.String("D.d");
// DO-NOT-DELETE splicer.end(Inherit.D.d)
}
// DO-NOT-DELETE splicer.begin(Inherit.D._misc)
// Put miscellaneous code here
// DO-NOT-DELETE splicer.end(Inherit.D._misc)
} // end class D
|