File: Overload_AClass_Impl.f

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 (91 lines) | stat: -rw-r--r-- 2,363 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
C       
C       File:          Overload_AClass_Impl.f
C       Symbol:        Overload.AClass-v1.0
C       Symbol Type:   class
C       Babel Version: 0.10.2
C       Description:   Server-side implementation for Overload.AClass
C       
C       WARNING: Automatically generated; only changes within splicers preserved
C       
C       babel-version = 0.10.2
C       


C       
C       Symbol "Overload.AClass" (version 1.0)
C       
C       This class is passed into the overloaded method as an example
C       of passing classes.
C       


C       DO-NOT-DELETE splicer.begin(_miscellaneous_code_start)
C       Insert extra code here...
C       DO-NOT-DELETE splicer.end(_miscellaneous_code_start)




C       
C       Class constructor called when the class is created.
C       

        subroutine Overload_AClass__ctor_fi(self)
        implicit none
C       in Overload.AClass self
        integer*8 self

C       DO-NOT-DELETE splicer.begin(Overload.AClass._ctor)
C       Insert the implementation here...
C       DO-NOT-DELETE splicer.end(Overload.AClass._ctor)
        end


C       
C       Class destructor called when the class is deleted.
C       

        subroutine Overload_AClass__dtor_fi(self)
        implicit none
C       in Overload.AClass self
        integer*8 self

C       DO-NOT-DELETE splicer.begin(Overload.AClass._dtor)
C       Insert the implementation here...
C       DO-NOT-DELETE splicer.end(Overload.AClass._dtor)
        end


C       
C       Static class initializer called exactly once before any user-defined method is dispatched
C       

        subroutine Overload_AClass__load_fi()
        implicit none

C       DO-NOT-DELETE splicer.begin(Overload.AClass._load)
C       Insert the implementation here...
C       DO-NOT-DELETE splicer.end(Overload.AClass._load)
        end


C       
C       Method:  getValue[]
C       

        subroutine Overload_AClass_getValue_fi(self, retval)
        implicit none
C       in Overload.AClass self
        integer*8 self
C       out int retval
        integer*4 retval

C       DO-NOT-DELETE splicer.begin(Overload.AClass.getValue)
        retval = 2
C       DO-NOT-DELETE splicer.end(Overload.AClass.getValue)
        end


C       DO-NOT-DELETE splicer.begin(_miscellaneous_code_end)
C       Insert extra code here...
C       DO-NOT-DELETE splicer.end(_miscellaneous_code_end)