JavaField.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 19 Jan 2013 23:19:12 +0000
branchrefactoring-vmdata
changeset 1985 7c5a14d663ba
parent 1864 60a8dc26c8c6
child 2068 ebbc5ecacb64
permissions -rw-r--r--
Temporary commit. JavaNativeMethod refactored to use new-style native methods. Java VM does not boot at this point.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
     1
"
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
     2
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1049
diff changeset
     3
1155
vranyj1
parents: 1152
diff changeset
     4
 New code and modifications done at SWING Research Group [1]:
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1049
diff changeset
     5
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
     6
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
     7
                            SWING Research Group, Czech Technical University in Prague
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
     8
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
     9
 This software is furnished under a license and may be used
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    10
 only in accordance with the terms of that license and with the
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    11
 inclusion of the above copyright notice.   This software may not
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    12
 be provided or otherwise made available to, or used by, any
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    13
 other person.  No title to or ownership of the software is
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    14
 hereby transferred.
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    15
1155
vranyj1
parents: 1152
diff changeset
    16
 [1] Code written at SWING Research Group contains a signature
vranyj1
parents: 1152
diff changeset
    17
     of one of the above copright owners. For exact set of such code,
vranyj1
parents: 1152
diff changeset
    18
     see the differences between this version and version stx:libjava
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1049
diff changeset
    19
     as of 1.9.2010
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    20
"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    21
"{ Package: 'stx:libjava' }"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    22
879
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
    23
Object subclass:#JavaField
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
    24
	instanceVariableNames:'accessFlags class name descriptor signature index constantValue
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
    25
		annotations constantPool'
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    26
	classVariableNames:'A_FINAL A_PRIVATE A_PROTECTED A_PUBLIC A_STATIC A_TRANSIENT
1372
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
    27
		A_VOLATILE A_SMALLTALK A_SYNTHETIC A_ENUM FieldTypeClasses'
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    28
	poolDictionaries:''
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    29
	category:'Languages-Java-Reader-Support'
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    30
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    31
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    32
!JavaField class methodsFor:'documentation'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    33
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    34
copyright
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    35
"
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    36
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1049
diff changeset
    37
1155
vranyj1
parents: 1152
diff changeset
    38
 New code and modifications done at SWING Research Group [1]:
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1049
diff changeset
    39
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    40
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    41
                            SWING Research Group, Czech Technical University in Prague
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    42
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    43
 This software is furnished under a license and may be used
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    44
 only in accordance with the terms of that license and with the
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    45
 inclusion of the above copyright notice.   This software may not
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    46
 be provided or otherwise made available to, or used by, any
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    47
 other person.  No title to or ownership of the software is
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    48
 hereby transferred.
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    49
1155
vranyj1
parents: 1152
diff changeset
    50
 [1] Code written at SWING Research Group contains a signature
vranyj1
parents: 1152
diff changeset
    51
     of one of the above copright owners. For exact set of such code,
vranyj1
parents: 1152
diff changeset
    52
     see the differences between this version and version stx:libjava
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1049
diff changeset
    53
     as of 1.9.2010
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    54
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 873
diff changeset
    55
"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    56
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    57
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    58
!JavaField class methodsFor:'class initialization'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    59
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    60
initialize
1155
vranyj1
parents: 1152
diff changeset
    61
    A_PUBLIC := 16r0001.
vranyj1
parents: 1152
diff changeset
    62
    A_PRIVATE := 16r0002.
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    63
    A_PROTECTED := 16r0004.
1155
vranyj1
parents: 1152
diff changeset
    64
    A_STATIC := 16r0008.
vranyj1
parents: 1152
diff changeset
    65
    A_FINAL := 16r0010.
vranyj1
parents: 1152
diff changeset
    66
    A_VOLATILE := 16r0040.
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    67
    A_TRANSIENT := 16r0080.
1372
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
    68
    A_SYNTHETIC := 16r1000.
1155
vranyj1
parents: 1152
diff changeset
    69
    A_ENUM := 16r4000.
vranyj1
parents: 1152
diff changeset
    70
    FieldTypeClasses := (IdentityDictionary new)
vranyj1
parents: 1152
diff changeset
    71
                at: #B put: JavaByte;
vranyj1
parents: 1152
diff changeset
    72
                at: #C put: Character;
vranyj1
parents: 1152
diff changeset
    73
                at: #D put: Float;
vranyj1
parents: 1152
diff changeset
    74
                at: #F put: ShortFloat;
vranyj1
parents: 1152
diff changeset
    75
                at: #I put: Integer;
vranyj1
parents: 1152
diff changeset
    76
                at: #J put: LargeInteger;
vranyj1
parents: 1152
diff changeset
    77
                at: #S put: JavaShort;
vranyj1
parents: 1152
diff changeset
    78
                at: #Z put: Boolean;
vranyj1
parents: 1152
diff changeset
    79
                at: #'[B' put: ByteArray;
vranyj1
parents: 1152
diff changeset
    80
                at: #'[C' put: Unicode16String;
vranyj1
parents: 1152
diff changeset
    81
                at: #'[D' put: DoubleArray;
vranyj1
parents: 1152
diff changeset
    82
                at: #'[F' put: FloatArray;
vranyj1
parents: 1152
diff changeset
    83
                at: #'[I' put: SignedIntegerArray;
vranyj1
parents: 1152
diff changeset
    84
                at: #'[J' put: SignedLongIntegerArray;
vranyj1
parents: 1152
diff changeset
    85
                at: #'[S' put: WordArray;
vranyj1
parents: 1152
diff changeset
    86
                at: #'[Z' put: BooleanArray;
vranyj1
parents: 1152
diff changeset
    87
                yourself
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    88
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    89
    "
1155
vranyj1
parents: 1152
diff changeset
    90
     self initialize"
1372
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
    91
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    92
    "Modified: / 13-05-1998 / 14:44:43 / cg"
1372
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
    93
    "Modified: / 21-02-2012 / 09:28:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    94
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    95
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    96
!JavaField class methodsFor:'constants'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    97
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    98
A_FINAL
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    99
    ^ A_FINAL
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   100
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   101
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   102
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   103
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   104
A_PRIVATE
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   105
    ^ A_PRIVATE
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   106
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   107
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   108
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   109
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   110
A_PROTECTED
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   111
    ^ A_PROTECTED
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   112
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   113
    "Created: / 13.5.1998 / 13:03:51 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   114
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   115
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   116
A_PUBLIC
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   117
    ^ A_PUBLIC
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   118
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   119
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   120
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   121
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   122
A_STATIC
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   123
    ^ A_STATIC
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   124
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   125
    "Created: / 13.5.1998 / 13:03:55 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   126
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   127
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   128
A_TRANSIENT
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   129
    ^ A_TRANSIENT
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   130
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   131
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   132
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   133
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   134
A_VOLATILE
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   135
    ^ A_VOLATILE
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   136
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   137
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   138
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   139
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   140
!JavaField methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   141
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   142
accessFlags
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   143
    ^ accessFlags
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   144
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   145
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   146
annotations
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   147
    ^ annotations
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   148
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   149
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   150
annotations:something
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   151
    annotations := something.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   152
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   153
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   154
constantPool
879
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   155
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   156
    ^ constantPool
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   157
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   158
    "Created: / 17-12-2010 / 18:40:23 / Marcel Hlopko <hlopik@gmail.com>"
879
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   159
    "Modified: / 27-07-2011 / 09:38:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   160
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   161
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   162
constantValue
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   163
    ^ constantValue
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   164
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   165
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   166
constantValue:aValue
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   167
    constantValue := aValue
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   168
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   169
1372
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
   170
descriptor
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
   171
    ^ descriptor
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
   172
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
   173
    "Created: / 21-02-2012 / 11:13:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
   174
!
dea574a1b6b3 Some initial class reloading support. Not yet finished, just sketched out.
vranyj1
parents: 1240
diff changeset
   175
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   176
ensureHasAnnotations
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   177
    annotations ifNil: [ annotations := JavaAnnotationContainer for:self ].
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   178
    ^ annotations
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   179
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   180
    "Created: / 25-02-2011 / 16:04:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   181
    "Modified: / 16-03-2011 / 17:13:59 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   182
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   183
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   184
index
918
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   185
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   186
    index ifNil:[
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   187
        self isStatic ifTrue:[
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   188
            index := class class instVarOffsetOf: name
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   189
        ] ifFalse:[
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   190
            index := class instVarOffsetOf: name
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   191
        ].
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   192
    ].
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   193
    ^ index
918
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   194
73bd57f8d3b0 - fixes in natives (reflective support for fields)
vranyj1
parents: 914
diff changeset
   195
    "Modified: / 17-08-2011 / 09:26:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   196
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   197
879
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   198
javaClass
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   199
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   200
    ^ class
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   201
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   202
    "Created: / 27-07-2011 / 09:17:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   203
!
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   204
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   205
name
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   206
    ^ name
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   207
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   208
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   209
signature
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   210
    ^ signature
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   211
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   212
    "Created: / 15.10.1998 / 10:37:06 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   213
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   214
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   215
!JavaField methodsFor:'initialization'!
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   216
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   217
setAccessFlags:flags
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   218
    accessFlags := flags.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   219
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   220
    "Created: 16.4.1996 / 13:04:25 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   221
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   222
879
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   223
setClass: aClass
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   224
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   225
    class := aClass
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   226
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   227
    "Created: / 27-07-2011 / 09:27:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   228
!
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   229
879
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   230
setConstantPool:aJavaContantPool
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   231
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   232
    constantPool := aJavaContantPool.
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   233
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   234
    "Created: / 17-12-2010 / 18:41:59 / Marcel Hlopko <hlopik@gmail.com>"
8bb82d1ea058 Cleanup phase 3: old JavaRef class removed
vranyj1
parents: 877
diff changeset
   235
    "Created: / 27-07-2011 / 09:30:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   236
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   237
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   238
setConstantValue:something
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   239
    constantValue := something.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   240
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   241
    "Created: 16.4.1996 / 13:04:58 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   242
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   243
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   244
setDescriptor:aString
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   245
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   246
    descriptor := aString.
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   247
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   248
    "Created: / 16-04-1996 / 13:04:43 / cg"
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   249
    "Created: / 14-08-2011 / 19:40:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   250
!
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   251
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   252
setIndex:anInteger
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   253
    index := anInteger.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   254
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   255
    "Created: / 22-11-2010 / 17:13:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   256
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   257
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   258
setName:aString
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   259
    name := aString.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   260
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   261
    "Created: 16.4.1996 / 13:04:35 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   262
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   263
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   264
setSignature:aString
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   265
    signature := aString.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   266
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   267
    "Created: 16.4.1996 / 13:04:43 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   268
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   269
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   270
!JavaField methodsFor:'printing & storing'!
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   271
1240
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   272
printOn: aStream 
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   273
    | signatureOrDescriptor |
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   274
    signature notNil ifTrue: [ signatureOrDescriptor := signature ] ifFalse: [
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   275
        descriptor notNil ifTrue: [ signatureOrDescriptor := descriptor ] ifFalse: [
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   276
            signatureOrDescriptor := 'unknown descriptor'
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   277
        ]
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   278
    ].
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   279
    super printOn: aStream.
1240
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   280
    aStream
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   281
        nextPutAll: '(name: ';
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   282
        nextPutAll: name;
1240
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   283
        nextPut: $,;
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   284
        space;
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   285
        nextPutAll: 'descriptor: ';
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   286
        nextPutAll: signatureOrDescriptor;
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   287
        nextPut: $)
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   288
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   289
    "Created: / 22-05-2011 / 16:07:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1240
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1155
diff changeset
   290
    "Modified: / 07-12-2011 / 22:03:41 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   291
! !
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   292
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   293
!JavaField methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   294
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   295
initialValue
914
0331f83c542a Fixes for invoke0 native
vranyj1
parents: 913
diff changeset
   296
    ^ JavaClass initialValueFromSignature: descriptor
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   297
914
0331f83c542a Fixes for invoke0 native
vranyj1
parents: 913
diff changeset
   298
    "Modified: / 14-08-2011 / 19:59:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   299
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   300
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   301
isFinal
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   302
    ^ (accessFlags bitAnd:A_FINAL) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   303
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   304
    "Modified: / 13.5.1998 / 12:59:26 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   305
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   306
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   307
isPrivate
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   308
    ^ (accessFlags bitAnd:A_PRIVATE) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   309
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   310
    "Modified: / 13.5.1998 / 12:59:30 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   311
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   312
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   313
isProtected
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   314
    ^ (accessFlags bitAnd:A_PROTECTED) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   315
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   316
    "Modified: / 13.5.1998 / 12:59:35 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   317
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   318
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   319
isPublic
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   320
    ^ (accessFlags bitAnd:A_PUBLIC) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   321
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   322
    "Modified: / 13.5.1998 / 12:59:40 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   323
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   324
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   325
isStatic
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   326
    ^ (accessFlags bitAnd:A_STATIC) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   327
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   328
    "Modified: / 13.5.1998 / 12:59:43 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   329
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   330
1441
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   331
isSynthetic
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   332
    ^ (accessFlags bitAnd:A_SYNTHETIC) ~~ 0
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   333
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   334
    "Modified: / 13-05-1998 / 12:59:40 / cg"
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   335
    "Created: / 30-03-2012 / 19:49:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   336
!
0faa0f8eda0c Minor improvements in reloading
vranyj1
parents: 1372
diff changeset
   337
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   338
isTransient
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   339
    ^ (accessFlags bitAnd:A_TRANSIENT) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   340
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   341
    "Modified: / 13.5.1998 / 12:59:51 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   342
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   343
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   344
isVolatile
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   345
    ^ (accessFlags bitAnd:A_VOLATILE) ~~ 0
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   346
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   347
    "Modified: / 13.5.1998 / 12:59:56 / cg"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   348
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   349
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   350
type
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   351
    ^ JavaMethod typeFromSignature:descriptor in:nil
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   352
913
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   353
    "Modified: / 08-01-1998 / 19:13:22 / cg"
1781f130b005 signature instvars renamed to descriptor
vranyj1
parents: 912
diff changeset
   354
    "Modified: / 14-08-2011 / 19:43:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   355
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   356
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   357
typeClass
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   358
914
0331f83c542a Fixes for invoke0 native
vranyj1
parents: 913
diff changeset
   359
    ^(JavaDescriptor fromString: descriptor) javaClass.
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   360
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   361
    "Created: / 23-11-2010 / 17:02:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
914
0331f83c542a Fixes for invoke0 native
vranyj1
parents: 913
diff changeset
   362
    "Modified: / 14-08-2011 / 19:59:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   363
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   364
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   365
!JavaField class methodsFor:'documentation'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   366
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   367
version
1864
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   368
    ^ '$Header$'
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   369
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   370
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   371
version_CVS
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   372
    ^ '§Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaField.st,v 1.17 2009/10/09 14:04:34 cg Exp §'
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   373
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   374
1864
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   375
version_HG
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   376
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   377
    ^ '$Changeset: <not expanded> $'
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   378
!
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   379
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   380
version_SVN
1864
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   381
    ^ '§Id§'
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   382
! !
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   383
957
84a9553aa486 Fixes for ExtClassLoader
vranyj1
parents: 923
diff changeset
   384
JavaField initialize!