File: AnException_Impl.java

package info (click to toggle)
babel 0.10.2-1
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 43,932 kB
  • ctags: 29,707
  • sloc: java: 74,695; ansic: 73,142; cpp: 40,649; sh: 18,411; f90: 10,062; fortran: 6,727; python: 6,406; makefile: 3,866; xml: 118; perl: 48
file content (74 lines) | stat: -rw-r--r-- 2,038 bytes parent folder | download
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
/*
 * File:          AnException_Impl.java
 * Symbol:        Overload.AnException-v1.0
 * Symbol Type:   class
 * Babel Version: 0.10.2
 * Description:   Server-side implementation for Overload.AnException
 * 
 * WARNING: Automatically generated; only changes within splicers preserved
 * 
 * babel-version = 0.10.2
 */

package Overload;

import sidl.SIDLException;
import sidl.ClassInfo;
import sidl.BaseInterface;
import sidl.BaseException;
import sidl.BaseClass;

// DO-NOT-DELETE splicer.begin(Overload.AnException._imports)
// Put additional imports here...
// DO-NOT-DELETE splicer.end(Overload.AnException._imports)

/**
 * Symbol "Overload.AnException" (version 1.0)
 * 
 * This exception is passed into the overloaded method as an example
 * of passing classes.
 */
public class AnException_Impl extends AnException
{

  // DO-NOT-DELETE splicer.begin(Overload.AnException._data)
  // Put additional private data here...
  // DO-NOT-DELETE splicer.end(Overload.AnException._data)

  static { 
  // DO-NOT-DELETE splicer.begin(Overload.AnException._load)
  // Put load function implementation here...
  // DO-NOT-DELETE splicer.end(Overload.AnException._load)
  }

  /**
   * User defined constructor
   */
  public AnException_Impl(long IORpointer){
    super(IORpointer);
    // DO-NOT-DELETE splicer.begin(Overload.AnException.AnException)
    // add construction details here
    setNote("AnException");
    // DO-NOT-DELETE splicer.end(Overload.AnException.AnException)
  }

  /**
   * User defined destructing method
   */
  public void finalize() throws Throwable{
    super.finalize();
    // DO-NOT-DELETE splicer.begin(Overload.AnException._dtor)
    // add destruction details here
    // DO-NOT-DELETE splicer.end(Overload.AnException._dtor)
  }

  // user defined static methods: (none)

  // user defined non-static methods: (none)

  // DO-NOT-DELETE splicer.begin(Overload.AnException._misc)
  // Put miscellaneous code here
  // DO-NOT-DELETE splicer.end(Overload.AnException._misc)

} // end class AnException