extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 31 Jan 2013 13:45:17 +0000
branchrefactoring-vmdata
changeset 2019 e1291a81f215
parent 1987 596f7d5cb7cd
child 2037 6b93bf17087a
permissions -rw-r--r--
Finished uncached trampoline. Now JavaNativeMethod is not a Java method but Smalltalk methods. When created, a trampoline code is installed so when invoked, it dispatches back to JavaMethod>>nativeMethodInvokation: like before. The next step is to install optimized trampoline after first invocation.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
     1
"{ Package: 'stx:libjava' }"!
1353
2968f8acb434 one step closer to eager method resolving
hlopkmar
parents: 1336
diff changeset
     2
1376
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     3
!Behavior methodsFor:'queries'!
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     4
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     5
isInterface
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     6
    "return true, if the receiver is a Java interface"
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     7
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     8
    ^ false
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
     9
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
    10
    "
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
    11
     True isInterface
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
    12
    "
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
    13
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
    14
    "Created: / 22-02-2012 / 21:53:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c4b2cf1467c3 Fixes for Groovy and class reloading
vranyj1
parents: 1368
diff changeset
    15
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    16
1674
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    17
!Behavior methodsFor:'queries'!
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    18
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    19
isJavaPrimitiveType
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    20
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    21
    ^false
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    22
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    23
    "Created: / 20-12-2010 / 21:52:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    24
! !
f7e00de5caae commented out permission checking even for mh :)
hlopkmar
parents: 1673
diff changeset
    25
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    26
!Boolean class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    27
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    28
isJavaPrimitiveType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    29
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    30
    ^true
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    31
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    32
    "Created: / 25-02-2011 / 08:22:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    33
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    34
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    35
!Boolean class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    36
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    37
javaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    38
    ^ BooleanArray
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    39
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    40
    "Created: / 25-02-2011 / 08:27:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    41
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    42
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    43
!Boolean class methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    44
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    45
javaBox: anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    46
    | wrapper |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    47
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    48
    wrapper := (JavaVM classForName: 'java.lang.Boolean') new.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    49
    wrapper perform: #'<init>(Z)V' with: anObject.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    50
    ^ wrapper
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    51
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    52
    "Created: / 16-08-2011 / 09:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    53
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    54
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    55
!Boolean class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    56
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    57
javaName
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    58
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    59
    ^'boolean'.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    60
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    61
    "Modified: / 25-02-2011 / 18:58:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    62
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    63
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    64
!Boolean class methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    65
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    66
javaUnbox: object onError: errorBlock
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    67
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    68
    | value |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    69
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    70
    (object class name = 'java/lang/Boolean') ifFalse:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    71
        errorBlock value.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    72
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    73
    value := object instVarNamed: #value.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    74
    (value ~~ 0 and:[value ~~ 1]) ifTrue:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    75
        errorBlock value.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    76
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    77
    ^value
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    78
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    79
    "Created: / 22-11-2011 / 11:52:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    80
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    81
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    82
!Boolean class methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    83
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    84
javaUnwrap: zeroOrOne
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    85
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    86
    ^zeroOrOne == 1
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    87
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    88
    "Created: / 10-12-2011 / 20:00:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    89
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    90
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    91
!Boolean class methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    92
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    93
javaWrap: boolean
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    94
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    95
    ^boolean ifTrue:[1] ifFalse:[0].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    96
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    97
    "Created: / 18-03-2012 / 22:03:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    98
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
    99
1840
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   100
!Boolean class methodsFor:'autoboxing support'!
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   101
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   102
javaWrapRequired
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   103
    ^true
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   104
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   105
    "Created: / 29-11-2012 / 23:02:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   106
! !
abd3746f821f Added Boolean class>>javaWrapRequired.
vranyj1
parents: 1818
diff changeset
   107
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   108
!Boolean class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   109
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   110
javaWrapperClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   111
    ^(Java classForName: 'java.lang.Boolean')
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   112
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   113
    "Created: / 24-02-2012 / 19:43:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   114
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   115
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   116
!BooleanArray methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   117
826
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   118
isInterface
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   119
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   120
    ^false
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   121
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   122
    "Created: / 31-05-2011 / 16:07:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   123
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   124
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   125
!BooleanArray class methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   126
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   127
isInterface
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   128
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   129
    ^false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   130
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   131
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   132
!BooleanArray class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   133
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   134
isJavaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   135
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   136
    ^true
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   137
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   138
    "Created: / 20-12-2010 / 22:47:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   139
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   140
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   141
!BooleanArray class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   142
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   143
isJavaReferenceType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   144
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   145
    "Java arrays are reference types"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   146
    ^true
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   147
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   148
    "Created: / 20-12-2010 / 22:30:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   149
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   150
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   151
!BooleanArray class methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   152
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   153
javaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   154
    ^ JavaArray javaArrayClassFor: self
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   155
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   156
    "Created: / 06-12-2011 / 17:29:22 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   157
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   158
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   159
!BooleanArray class methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   160
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   161
javaComponentClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   162
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   163
    ^Boolean
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   164
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   165
    "Created: / 20-12-2010 / 22:13:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   166
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   167
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   168
!BooleanArray class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   169
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   170
javaName
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   171
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   172
    ^'[Z'.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   173
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   174
    "Modified: / 31-08-2011 / 23:57:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   175
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   176
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   177
!ByteArray class methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   178
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   179
isInterface
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   180
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   181
    ^false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   182
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   183
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   184
!ByteArray class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   185
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   186
isJavaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   187
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   188
    ^true
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   189
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   190
    "Created: / 05-02-2011 / 22:45:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   191
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   192
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   193
!ByteArray class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   194
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   195
isJavaReferenceType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   196
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   197
    "Java arrays are reference types"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   198
    ^true
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   199
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   200
    "Created: / 20-12-2010 / 22:30:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   201
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   202
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   203
!ByteArray class methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   204
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   205
javaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   206
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   207
    ^JavaArray javaArrayClassFor: self
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   208
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   209
    "Created: / 11-06-2011 / 23:42:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   210
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   211
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   212
!ByteArray class methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   213
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   214
javaComponentClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   215
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   216
    ^JavaByte
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   217
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   218
    "Created: / 20-12-2010 / 22:05:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   219
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   220
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   221
!ByteArray class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   222
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   223
javaName
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   224
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   225
    ^'[B'.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   226
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   227
    "Modified: / 25-02-2011 / 19:02:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   228
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   229
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   230
!Character class methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   231
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   232
isJavaPrimitiveType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   233
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   234
    ^true
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   235
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   236
    "Created: / 20-12-2010 / 22:18:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   237
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   238
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   239
!Character class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   240
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   241
javaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   242
    ^ String
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   243
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   244
    "Created: / 11-02-2011 / 10:44:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   245
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   246
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   247
!Character class methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   248
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   249
javaBox: anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   250
    | wrapper |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   251
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   252
    wrapper := (JavaVM classForName: 'java.lang.Character') new.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   253
    wrapper perform: #'<init>(C)V' with: anObject codePoint.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   254
    ^ wrapper
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   255
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   256
    "Created: / 16-08-2011 / 09:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   257
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   258
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   259
!Character class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   260
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   261
javaName
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   262
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   263
    ^'char'.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   264
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   265
    "Modified: / 25-02-2011 / 18:58:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   266
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   267
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   268
!Character class methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   269
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   270
javaUnbox: object onError: errorBlock
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   271
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   272
    | value |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   273
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   274
    (object class name = 'java/lang/Character') ifFalse:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   275
        errorBlock value.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   276
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   277
    value := object instVarNamed: #value.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   278
    (value between: 0 and: 255) ifFalse:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   279
        errorBlock value.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   280
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   281
    ^value
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   282
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   283
    "Created: / 22-11-2011 / 11:52:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   284
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   285
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   286
!Character class methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   287
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   288
javaWrapperClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   289
    ^(Java classForName: 'java.lang.Character')
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   290
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   291
    "Created: / 24-02-2012 / 19:42:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   292
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   293
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   294
!CharacterArray methodsFor:'java conversions'!
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   295
1061
vranyj1
parents: 1060
diff changeset
   296
asDottedJavaClassName
vranyj1
parents: 1060
diff changeset
   297
vranyj1
parents: 1060
diff changeset
   298
 "
vranyj1
parents: 1060
diff changeset
   299
    examples:
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   300
    java.lang.String
1061
vranyj1
parents: 1060
diff changeset
   301
    [[[Ljava/lang/Object; => java.lang.Object
vranyj1
parents: 1060
diff changeset
   302
    "
vranyj1
parents: 1060
diff changeset
   303
vranyj1
parents: 1060
diff changeset
   304
vranyj1
parents: 1060
diff changeset
   305
    | nm |
vranyj1
parents: 1060
diff changeset
   306
    nm := self asJavaComponentClassName.
vranyj1
parents: 1060
diff changeset
   307
    (nm startsWith: $L) ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   308
	nm := nm copyFrom: 2 to: nm size - 1
1061
vranyj1
parents: 1060
diff changeset
   309
    ].
vranyj1
parents: 1060
diff changeset
   310
    (nm includes: $/) ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   311
	nm := nm asString copyReplaceAll: $/ with: $.
1061
vranyj1
parents: 1060
diff changeset
   312
    ].
vranyj1
parents: 1060
diff changeset
   313
    ^ nm.
vranyj1
parents: 1060
diff changeset
   314
vranyj1
parents: 1060
diff changeset
   315
    "Created: / 21-10-2011 / 12:31:51 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
vranyj1
parents: 1060
diff changeset
   316
    "Created: / 30-10-2011 / 17:41:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vranyj1
parents: 1060
diff changeset
   317
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   318
1061
vranyj1
parents: 1060
diff changeset
   319
!CharacterArray methodsFor:'java conversions'!
vranyj1
parents: 1060
diff changeset
   320
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   321
asInternalJavaClassName
1060
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   322
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   323
    <resource: #obsolete>
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   324
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   325
    ^self asSlashedJavaClassName
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   326
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   327
    "Created: / 21-10-2011 / 12:31:51 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1060
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   328
    "Modified: / 30-10-2011 / 17:40:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   329
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   330
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   331
!CharacterArray methodsFor:'java conversions'!
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   332
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   333
asJavaComponentClassName
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   334
    | componentClassName |
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   335
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   336
    componentClassName := self utf8Encoded.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   337
    (componentClassName matches: '*\[*') ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   338
	componentClassName := componentClassName
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   339
		    copyFrom: (componentClassName lastIndexOf: $[) + 1
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   340
		    to: componentClassName size.
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   341
    ].
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   342
    ^ componentClassName.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   343
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   344
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   345
!CharacterArray methodsFor:'java conversions'!
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   346
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   347
asJavaishClassName
1060
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   348
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   349
    <resource: #obsolete>
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   350
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   351
    ^self asDottedJavaClassName.
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   352
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   353
    "Created: / 21-10-2011 / 12:33:01 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1060
c3ac98001802 Yet another set of hacks for classloaders
vranyj1
parents: 1038
diff changeset
   354
    "Modified: / 30-10-2011 / 17:41:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   355
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   356
1036
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   357
!CharacterArray methodsFor:'java conversions'!
4ff03464c3b3 refactored registry..
hlopkmar
parents: 1033
diff changeset
   358
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   359
asNiceJavaClassName
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   360
    | niceName |
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   361
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   362
    niceName := self asJavaComponentClassName asSTXInternalJavaClassName.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   363
    (self occurrencesOf: $[) timesRepeat: [ niceName := niceName , '[]' ].
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   364
    niceName := niceName asString copyReplaceAll: $/ with: $..
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   365
    ^ niceName.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   366
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   367
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   368
!CharacterArray methodsFor:'java conversions'!
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   369
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   370
asSTXInternalJavaClassName
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   371
    | internalName |
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   372
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   373
    internalName := self asJavaComponentClassName.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   374
    (internalName startsWith: $L) ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   375
	internalName := internalName copyFrom: 2 to: internalName size - 1
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   376
    ].
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   377
    (internalName includes: $.) ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   378
	internalName := internalName asString copyReplaceAll: $. with: $/
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   379
    ].
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   380
    ^internalName.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   381
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   382
1061
vranyj1
parents: 1060
diff changeset
   383
!CharacterArray methodsFor:'java conversions'!
vranyj1
parents: 1060
diff changeset
   384
vranyj1
parents: 1060
diff changeset
   385
asSlashedJavaClassName
vranyj1
parents: 1060
diff changeset
   386
    "removes square brackets and adds slashes"
vranyj1
parents: 1060
diff changeset
   387
    | internalName |
vranyj1
parents: 1060
diff changeset
   388
    internalName := self asJavaComponentClassName.
vranyj1
parents: 1060
diff changeset
   389
    (internalName startsWith: $L) ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   390
	internalName := internalName copyFrom: 2 to: internalName size - 1
1061
vranyj1
parents: 1060
diff changeset
   391
    ].
vranyj1
parents: 1060
diff changeset
   392
    (internalName includes: $.) ifTrue: [
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   393
	internalName := internalName asString copyReplaceAll: $. with: $/
1061
vranyj1
parents: 1060
diff changeset
   394
    ].
vranyj1
parents: 1060
diff changeset
   395
    ^ internalName.
vranyj1
parents: 1060
diff changeset
   396
vranyj1
parents: 1060
diff changeset
   397
    "Created: / 21-10-2011 / 12:31:51 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
vranyj1
parents: 1060
diff changeset
   398
    "Created: / 30-10-2011 / 17:40:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vranyj1
parents: 1060
diff changeset
   399
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   400
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   401
!CharacterArray methodsFor:'java queries'!
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   402
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   403
isJavaArrayDescriptor
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   404
^ self startsWith:$[.
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   405
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   406
1032
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   407
!CharacterArray methodsFor:'java queries'!
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   408
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   409
isJavaPrimitiveTypeDescriptor
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   410
    ^ (self size = 1 and: [ JavaDescriptor baseTypes includesKey: self first ]).
c3085c73e150 just refactoring registry
hlopkmar
parents: 1021
diff changeset
   411
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   412
1868
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   413
!CharacterArray methodsFor:'special string converting'!
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   414
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   415
withoutSuffix: aString 
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   416
    "if the receiver endsWith aString, return a copy without it.
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   417
     Otherwise return the receiver"
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   418
    
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   419
    (self endsWith: aString) ifTrue: [
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   420
        ^ self copyFrom: 1 to: self size - aString size
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   421
    ].
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   422
    ^ self
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   423
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   424
    "
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   425
     'helloworld' withoutSuffix:'world'
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   426
     'helloworld' withoutSuffix:'foo'"
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   427
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   428
    "Created: / 08-12-2012 / 20:26:27 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   429
! !
6f55db58b3af some possibly useful methods :)
hlopkmar
parents: 1866
diff changeset
   430
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   431
!CharacterArray class methodsFor:'encoding & decoding'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   432
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   433
decodeFromJavaUTF8: bytes
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   434
    "Decodes a string from modified UTF8 encoding
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   435
     as used in Java .class files. see
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   436
     'The class file format specification', section 4.5.7"
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   437
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   438
    | string  i  s  b  codePoint  realLength |
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   439
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   440
    string := String new: bytes size.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   441
    realLength := bytes size.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   442
    s := bytes readStream.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   443
    i := 1.
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   444
    [ s atEnd ] whileFalse:
1253
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   445
            [ b := s next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   446
            (b & 2r10000000) == 0
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   447
                ifTrue: [ codePoint := b ]
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   448
                ifFalse:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   449
                    [ self assert: (b & 2r01000000) = 2r01000000.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   450
                    (b & 2r00100000) = 0
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   451
                        ifTrue:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   452
                            [ "two byte utf char"
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   453
                            realLength := realLength - 1.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   454
                            self assert: s size > 0.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   455
                            self assert: (b & 2r01000000) = 2r01000000.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   456
                            string bitsPerCharacter < 16
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   457
                                ifTrue: [ string := Unicode16String fromString: string ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   458
                            codePoint := (b & 2r00011111) << 6.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   459
                            b := s next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   460
                            self assert: (b & 2r11000000) = 2r10000000.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   461
                            codePoint := codePoint + (b & 2r00111111). ]
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   462
                        ifFalse:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   463
                            [ "at lease 3 byte utf char"
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   464
                            realLength := realLength - 2.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   465
                            string bitsPerCharacter < 16"was: 32"
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   466
                                ifTrue: [ string := Unicode16String"was: Unicode32String" fromString: string ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   467
                            self assert: s size > 1.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   468
                            (b & 2r00010000) = 0
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   469
                                ifTrue:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   470
                                    [ | utf32Possible  utf32Value |
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   471
1253
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   472
                                    "3 or 6 byte utf char"
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   473
                                    self assert: s size > 1.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   474
                                    s size < 5
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   475
                                        ifTrue: [ utf32Possible := false ]
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   476
                                        ifFalse: [ utf32Possible := true ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   477
                                    b ~= 2r11101101 ifTrue: [ utf32Possible := false ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   478
                                    codePoint := (b & 2r00001111) << 12.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   479
                                    b := s next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   480
                                    self assert: (b & 2r11000000) = 2r10000000.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   481
                                    ((b & 2r11110000) = 2r10100000 and: [ utf32Possible ])
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   482
                                        ifTrue: [ utf32Value := 2r00010000 + ((b & 2r00001111) << 16) ]
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   483
                                        ifFalse: [ utf32Possible := false ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   484
                                    codePoint := codePoint + ((b & 2r00111111) << 6).
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   485
                                    b := s next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   486
                                    self assert: (b & 2r11000000) = 2r10000000.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   487
                                    utf32Possible
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   488
                                        ifTrue: [ utf32Value := utf32Value + ((b & 2r00111111) << 10) ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   489
                                    codePoint := codePoint + (b & 2r00111111).
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   490
                                    utf32Possible
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   491
                                        ifTrue:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   492
                                            [ | tmpB |
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   493
1253
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   494
                                            string bitsPerCharacter < 32
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   495
                                                ifTrue: [ string := Unicode32String fromString: string ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   496
                                            tmpB := s copy.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   497
                                            b := tmpB next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   498
                                            b = 2r11101101
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   499
                                                ifTrue:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   500
                                                    [ b := tmpB next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   501
                                                    (b & 2r11110000) = 2r10110000
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   502
                                                        ifTrue:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   503
                                                            [ utf32Value := utf32Value + ((b & 2r00001111) << 6).
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   504
                                                            b := tmpB next.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   505
                                                            self assert: (b & 2r11000000) = 2r10000000.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   506
                                                            utf32Value := utf32Value + (b & 2r00111111).
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   507
                                                            codePoint := utf32Value.
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   508
                                                            realLength := realLength - 3. s position: tmpB position.] ] ] ]
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   509
                                ifFalse:
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   510
                                    [ "should not happen, ask mh"
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   511
                                    self halt. ] ] ].
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   512
            string at: i put: (Character codePoint: codePoint).
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   513
            i := i + 1. ].
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   514
    ^ string subString: 1 to: realLength.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   515
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   516
    "
1253
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   517
        String decodeFromJavaUTF8: 'Hello world' asByteArray"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   518
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   519
    "Created: / 22-12-2010 / 23:45:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   520
    "Modified: / 09-02-2011 / 01:12:25 / Marcel Hlopko <hlopik@gmail.com>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   521
    "Modified: / 13-03-2011 / 15:52:36 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1253
0ce45e884e08 Few more fixes in native methods
vranyj1
parents: 1226
diff changeset
   522
    "Modified: / 09-12-2011 / 19:49:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   523
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   524
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   525
!CharacterArray class methodsFor:'instance creation'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   526
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   527
fromJavaUTF8Bytes:aByteCollection
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   528
    "return a new string which represents the characters as decoded
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   529
     from the modified utf8 encoded bytes as specified in
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   530
     The class file format specification, section 4.5.7"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   531
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   532
    ^ self decodeFromJavaUTF8:aByteCollection.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   533
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   534
    "
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   535
     CharacterArray fromUTF8Bytes:#[ 16r41 16r42 ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   536
     CharacterArray fromUTF8Bytes:#[ 16rC1 16r02 ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   537
     CharacterArray fromUTF8Bytes:#[ 16rE0 16r81 16r02 ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   538
     CharacterArray fromUTF8Bytes:#[ 16rEF 16rBF 16rBF ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   539
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   540
   rfc2279 examples:
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   541
     CharacterArray fromUTF8Bytes:#[ 16r41 16rE2 16r89 16rA2 16rCE 16r91 16r2E ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   542
     CharacterArray fromUTF8Bytes:#[ 16rED 16r95 16r9C 16rEA 16rB5 16rAD 16rEC 16r96 16rB4 ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   543
     CharacterArray fromUTF8Bytes:#[ 16rE6 16r97 16rA5 16rE6 16r9C 16rAC 16rE8 16rAA 16r9E ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   544
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   545
   invalid:
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   546
     CharacterArray fromUTF8Bytes:#[ 16rC0 16r80 ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   547
     CharacterArray fromUTF8Bytes:#[ 16rE0 16r80 16r80 ]
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   548
    "
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   549
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   550
    "Created: / 23-12-2010 / 09:01:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   551
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   552
865
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   553
!CharacterArray class methodsFor:'queries'!
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   554
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   555
isJavaArrayClass
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   556
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   557
    ^true
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   558
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   559
    "Created: / 05-02-2011 / 22:45:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   560
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   561
865
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   562
!CharacterArray class methodsFor:'accessing-java'!
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   563
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   564
javaArrayClass
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   565
901
64a889b68bef - JavaVM: more natives
vranyj1
parents: 900
diff changeset
   566
    ^JavaArray javaArrayClassFor: Unicode16String
865
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   567
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   568
    "Created: / 11-06-2011 / 23:42:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
901
64a889b68bef - JavaVM: more natives
vranyj1
parents: 900
diff changeset
   569
    "Modified: / 10-08-2011 / 13:18:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
865
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   570
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   571
865
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   572
!CharacterArray class methodsFor:'accessing-java'!
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   573
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   574
javaComponentClass
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   575
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   576
    ^Character
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   577
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   578
    "Created: / 20-12-2010 / 22:05:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
82615f7deade Few fixes...
vranyj1
parents: 851
diff changeset
   579
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   580
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   581
!Class methodsFor:'accessing - java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   582
1649
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   583
classLoader
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   584
    JavaVM smalltalkClassLoader
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   585
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   586
    "Created: / 22-08-2012 / 13:00:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   587
! !
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   588
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   589
!Class methodsFor:'accessing - java'!
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
   590
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   591
javaMirror
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   592
    ^self javaMirrorClass forClass: self.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   593
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   594
    "Created: / 31-07-2012 / 17:39:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   595
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   596
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   597
!Class methodsFor:'accessing - java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   598
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   599
javaMirrorClass
1695
05df4ea1ced6 - stx_libjava
vranyj1
parents: 1692
diff changeset
   600
    "Returns a Java mirror class to be used by Java reflection"
05df4ea1ced6 - stx_libjava
vranyj1
parents: 1692
diff changeset
   601
05df4ea1ced6 - stx_libjava
vranyj1
parents: 1692
diff changeset
   602
    self isJavaPrimitiveType ifTrue:[ ^ JavaMirror mirrorClassForJavaPrimitive ].
05df4ea1ced6 - stx_libjava
vranyj1
parents: 1692
diff changeset
   603
    self isJavaArrayClass ifTrue:[ ^ JavaMirror mirrorClassForJavaArray ].
05df4ea1ced6 - stx_libjava
vranyj1
parents: 1692
diff changeset
   604
    ^JavaMirror mirrorClassForAlienClass
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   605
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   606
    "Created: / 31-07-2012 / 17:39:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   607
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   608
1656
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   609
!Class methodsFor:'accessing - java'!
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   610
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   611
lookupMethodByNameAndType: nameAndType
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   612
    | descriptor selector |
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   613
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   614
    descriptor := JavaMethodDescriptor fromString: (nameAndType descriptor).
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   615
    selector := nameAndType name copyReplaceAll: $_ with: $:.
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   616
    descriptor numArgs > 0 ifTrue:[selector := selector , ':'].
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   617
    selector := selector asSymbol.
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   618
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   619
    ^self lookupMethodFor: selector
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   620
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   621
    "Created: / 22-08-2012 / 13:11:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   622
! !
c6fee8f3a640 - fixes for Groovy-Smalltalk interop - SmalltalkEvaluator example works
vranyj1
parents: 1649
diff changeset
   623
1368
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   624
!ConfigurableFeatures class methodsFor:'queries-features'!
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   625
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   626
hasJavaSupport
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   627
    "/ use Smalltalk-at to trick the dependency/prerequisite generator
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   628
    ^ (Smalltalk at: #'JavaVM' ifAbsent:nil) notNil
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   629
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   630
    "
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   631
     ConfigurableFeatures hasJavaSupport
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   632
     ConfigurableFeatures includesFeature:#JavaSupport
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   633
    "
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   634
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   635
    "Created: / 03-01-2012 / 15:36:03 / cg"
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   636
    "Created: / 18-02-2012 / 16:42:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5f502e712403 Groovy language support and integration
vranyj1
parents: 1362
diff changeset
   637
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   638
2019
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   639
!Context methodsFor:'accessing'!
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   640
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   641
arg1Index    
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   642
    ^1
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   643
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   644
    "Created: / 31-01-2013 / 13:29:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   645
! !
e1291a81f215 Finished uncached trampoline.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1987
diff changeset
   646
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   647
!Delay methodsFor:'delaying'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   648
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   649
waitWithState:state
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   650
    "suspend the current process until either the relative time delta
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   651
     has passed (if millisecondDelta is non-nil), or the absolute millisecondTime
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   652
     has been reached (if resumptionTime non-nil)."
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   653
    
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   654
    | wasBlocked  currentDelta  dueTime  now  then |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   655
    isInterrupted := false.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   656
    millisecondDelta notNil ifTrue: [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   657
        now := OperatingSystem getMillisecondTime.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   658
        currentDelta := millisecondDelta rounded.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   659
        currentDelta > 16r0fffffff ifTrue: [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   660
            "NOTE: the microsecondTime is increasing monotonically,
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   661
                   while millisecondTime is wrapping at 16r1fffffff.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   662
                   So use the microsecondTime to check when we are finished"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   663
            dueTime := OperatingSystem getMicrosecondTime + (currentDelta * 1000).
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   664
            currentDelta := 16r0fffffff.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   665
        ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   666
        then := OperatingSystem millisecondTimeAdd: now and: currentDelta.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   667
    ] ifFalse: [ then := resumptionTime. ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   668
    wasBlocked := OperatingSystem blockInterrupts.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   669
    [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   670
        [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   671
            Processor signal: delaySemaphore atMilliseconds: then.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   672
            Processor activeProcess state: state.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   673
            delaySemaphore wait.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   674
        ] doWhile: [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   675
            (dueTime notNil 
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   676
                and: [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   677
                    isInterrupted not 
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   678
                        and: [ (currentDelta := dueTime - OperatingSystem getMicrosecondTime) > 0 ]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   679
                ]) 
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   680
                    ifTrue: [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   681
                        currentDelta := (currentDelta // 1000) min: 16r0fffffff.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   682
                        now := OperatingSystem getMillisecondTime.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   683
                        then := OperatingSystem millisecondTimeAdd: now and: currentDelta.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   684
                        true.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   685
                    ]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   686
                    ifFalse: [ false ]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   687
        ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   688
    ] ensure: [ wasBlocked ifFalse: [ OperatingSystem unblockInterrupts ]. ]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   689
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   690
    "
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   691
     Transcript showCR:'1'.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   692
     (Delay forSeconds:10) wait.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   693
     Transcript showCR:'2'."
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   694
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   695
    "Modified: / 26-02-1997 / 15:21:35 / cg"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   696
    "Modified: / 18-04-1997 / 11:56:46 / stefan"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   697
    "Created: / 30-11-2011 / 13:38:18 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   698
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   699
826
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   700
!DoubleArray class methodsFor:'testing'!
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   701
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   702
isInterface
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   703
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   704
    ^false
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   705
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   706
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   707
!DoubleArray class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   708
912
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   709
isJavaArrayClass
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   710
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   711
    ^true
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   712
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   713
    "Created: / 20-12-2010 / 22:47:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   714
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   715
912
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   716
!DoubleArray class methodsFor:'queries'!
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   717
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   718
isJavaReferenceType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   719
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   720
    "Java arrays are reference types"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   721
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   722
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   723
    "Created: / 20-12-2010 / 22:30:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   724
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   725
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   726
!DoubleArray class methodsFor:'accessing-java'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   727
1226
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   728
javaArrayClass
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   729
    ^ JavaArray javaArrayClassFor: self.
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   730
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   731
    "Created: / 06-12-2011 / 17:28:26 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   732
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   733
1226
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   734
!DoubleArray class methodsFor:'accessing-java'!
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   735
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   736
javaComponentClass
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   737
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   738
    ^Float
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   739
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   740
    "Created: / 20-12-2010 / 22:06:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   741
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   742
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   743
!DoubleArray class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   744
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   745
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   746
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   747
    ^'[D'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   748
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   749
    "Modified: / 25-02-2011 / 19:03:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   750
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   751
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   752
!ExecutableFunction methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   753
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   754
isJavaConstructor
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   755
    ^ false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   756
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   757
    "Created: / 31-07-2012 / 18:42:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   758
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   759
1893
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   760
!ExecutableFunction methodsFor:'queries'!
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   761
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   762
isProxyMethod
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   763
    "return true, if the receiver is a proxy method.
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   764
    false is returned here, true is returned in ProxyMethod."
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   765
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   766
    ^ false.
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   767
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   768
    "Created: / 16-12-2012 / 13:35:41 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   769
! !
167f2898b9ad bugfix - interop - narrowed return type synthetic methods
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1886
diff changeset
   770
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   771
!Float class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   772
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   773
isJavaPrimitiveType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   774
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   775
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   776
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   777
    "Created: / 06-02-2011 / 17:21:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   778
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   779
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   780
!Float class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   781
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   782
javaArrayClass
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   783
    ^ DoubleArray
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   784
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   785
    "Created: / 11-02-2011 / 10:50:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   786
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   787
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   788
!Float class methodsFor:'autoboxing support'!
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   789
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   790
javaBox: anObject
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   791
    | wrapper |
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   792
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
   793
    wrapper := (JavaVM classForName: 'java.lang.Double') new.
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   794
    wrapper perform: #'<init>(D)V' with: anObject.
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
   795
    ^ wrapper
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   796
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   797
    "Created: / 16-08-2011 / 09:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   798
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   799
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   800
!Float class methodsFor:'accessing'!
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   801
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   802
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   803
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   804
    ^'double'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   805
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   806
    "Modified: / 25-02-2011 / 18:59:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   807
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   808
1386
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   809
!Float class methodsFor:'accessing'!
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   810
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   811
javaWrapperClass
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   812
    ^(Java classForName: 'java.lang.Double')
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   813
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   814
    "Created: / 24-02-2012 / 19:42:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   815
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   816
826
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   817
!FloatArray class methodsFor:'testing'!
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   818
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   819
isInterface
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   820
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   821
    ^false
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
   822
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   823
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   824
!FloatArray class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   825
912
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   826
isJavaArrayClass
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   827
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   828
    ^true
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   829
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   830
    "Created: / 20-12-2010 / 22:47:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   831
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   832
912
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   833
!FloatArray class methodsFor:'queries'!
e651488f5741 Many fixes in reflection, expecially for generic types support
vranyj1
parents: 905
diff changeset
   834
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   835
isJavaReferenceType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   836
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   837
    "Java arrays are reference types"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   838
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   839
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   840
    "Created: / 20-12-2010 / 22:30:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   841
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   842
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   843
!FloatArray class methodsFor:'accessing-java'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   844
1226
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   845
javaArrayClass
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   846
    ^ JavaArray javaArrayClassFor: self.
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   847
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   848
    "Created: / 06-12-2011 / 17:29:01 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   849
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   850
1226
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   851
!FloatArray class methodsFor:'accessing-java'!
bd1d5c4ca4a8 fixes to make resolving tests pass
hlopkmar
parents: 1225
diff changeset
   852
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   853
javaComponentClass
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   854
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   855
    ^ShortFloat
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   856
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   857
    "Created: / 20-12-2010 / 22:06:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   858
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   859
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   860
!FloatArray class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   861
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   862
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   863
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   864
    ^'[F'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   865
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   866
    "Modified: / 25-02-2011 / 19:03:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   867
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   868
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   869
!Integer class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   870
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   871
isJavaPrimitiveType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   872
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   873
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   874
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   875
    "Created: / 11-02-2011 / 11:12:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   876
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   877
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   878
!Integer class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   879
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   880
javaArrayClass
873
933263bd2d27 Fixes for primitive array types (uses Signed* variant of an array)
vranyj1
parents: 866
diff changeset
   881
    ^ SignedIntegerArray
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   882
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   883
    "Created: / 11-02-2011 / 10:51:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   884
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   885
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   886
!Integer class methodsFor:'autoboxing support'!
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   887
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   888
javaBox: anObject
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   889
    | wrapper |
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   890
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
   891
    wrapper := (JavaVM classForName: 'java.lang.Integer') new.
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   892
    wrapper perform: #'<init>(I)V' with: anObject.
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
   893
    ^ wrapper
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   894
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   895
    "Created: / 16-08-2011 / 09:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   896
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   897
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   898
!Integer class methodsFor:'accessing'!
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   899
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   900
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   901
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   902
    ^'int'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   903
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   904
    "Modified: / 25-02-2011 / 18:59:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   905
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   906
1204
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   907
!Integer class methodsFor:'autoboxing support'!
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   908
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   909
javaUnbox: object onError: errorBlock
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   910
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   911
    ^self javaUnbox: object onError: errorBlock 
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   912
          min: "Integer.MIN_VALUE"-2147483648
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   913
          max: "Integer.MAX_VALUE" 2147483647
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   914
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   915
    "Created: / 25-11-2011 / 19:10:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   916
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   917
1205
vranyj1
parents: 1204
diff changeset
   918
!Integer class methodsFor:'autoboxing support'!
vranyj1
parents: 1204
diff changeset
   919
vranyj1
parents: 1204
diff changeset
   920
javaUnbox: object onError: errorBlock min: min max: max
vranyj1
parents: 1204
diff changeset
   921
vranyj1
parents: 1204
diff changeset
   922
    | value |
vranyj1
parents: 1204
diff changeset
   923
vranyj1
parents: 1204
diff changeset
   924
    (#(  'java/lang/Byte'
vranyj1
parents: 1204
diff changeset
   925
        'java/lang/Short'
vranyj1
parents: 1204
diff changeset
   926
        'java/lang/Integer'
vranyj1
parents: 1204
diff changeset
   927
        "'java/lang/Long'" ) includes: object class name) ifFalse:[
vranyj1
parents: 1204
diff changeset
   928
        errorBlock value.
vranyj1
parents: 1204
diff changeset
   929
    ].
vranyj1
parents: 1204
diff changeset
   930
vranyj1
parents: 1204
diff changeset
   931
    value := object instVarNamed:#value.
vranyj1
parents: 1204
diff changeset
   932
    (value between: min and: max) ifFalse:[
vranyj1
parents: 1204
diff changeset
   933
        errorBlock value.
vranyj1
parents: 1204
diff changeset
   934
    ].
vranyj1
parents: 1204
diff changeset
   935
    ^value
vranyj1
parents: 1204
diff changeset
   936
vranyj1
parents: 1204
diff changeset
   937
    "Created: / 22-11-2011 / 11:43:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vranyj1
parents: 1204
diff changeset
   938
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   939
1386
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   940
!Integer class methodsFor:'accessing'!
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   941
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   942
javaWrapperClass
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   943
    ^(Java classForName: 'java.lang.Integer')
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   944
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   945
    "Created: / 24-02-2012 / 19:41:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
   946
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   947
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   948
!LargeInteger class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   949
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   950
isJavaPrimitiveType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   951
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   952
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   953
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   954
    "Created: / 04-02-2011 / 11:55:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   955
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   956
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   957
!LargeInteger class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   958
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   959
javaArrayClass
873
933263bd2d27 Fixes for primitive array types (uses Signed* variant of an array)
vranyj1
parents: 866
diff changeset
   960
    ^ SignedLongIntegerArray
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   961
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   962
    "Created: / 11-02-2011 / 10:51:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   963
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   964
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   965
!LargeInteger class methodsFor:'autoboxing support'!
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   966
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
   967
javaBox: anObject
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   968
    | wrapper |
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   969
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
   970
    wrapper := (JavaVM classForName: 'java.lang.Long') new.
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   971
    wrapper perform: #'<init>(J)V' with: anObject.
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
   972
    ^ wrapper
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   973
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   974
    "Created: / 16-08-2011 / 09:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
   975
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   976
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   977
!LargeInteger class methodsFor:'accessing'!
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
   978
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   979
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   980
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   981
    ^'long'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   982
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   983
    "Modified: / 25-02-2011 / 18:59:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   984
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
   985
1204
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   986
!LargeInteger class methodsFor:'autoboxing support'!
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   987
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   988
javaUnbox: object onError: errorBlock
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   989
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   990
    | value |
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   991
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   992
    (object class name = 'java/lang/Long') ifFalse:[
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   993
        errorBlock value.
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   994
    ].
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   995
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   996
    value := object instVarNamed:#value.
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   997
    (value between: "Integer.MIN_VALUE"-9223372036854775808 and: "Integer.MAX_VALUE" 9223372036854775807) ifFalse:[
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   998
        errorBlock value.
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
   999
    ].
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
  1000
    ^value
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
  1001
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
  1002
    "Created: / 22-11-2011 / 11:45:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6c2b887399e8 Few small fixes
vranyj1
parents: 1192
diff changeset
  1003
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1004
1386
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1005
!LargeInteger class methodsFor:'accessing'!
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1006
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1007
javaWrapperClass
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1008
    ^(Java classForName: 'java.lang.Long')
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1009
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1010
    "Created: / 24-02-2012 / 19:42:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1011
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1012
1649
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1013
!Method methodsFor:'queries-java'!
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1014
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1015
isAbstract
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1016
    "For compatibility with Java methods"
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1017
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1018
    ^false
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1019
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1020
    "Created: / 22-08-2012 / 13:19:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1021
! !
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1022
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1023
!Method methodsFor:'queries-java'!
1648
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1024
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1025
isStatic
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1026
    "For compatibility with Java methods"
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1027
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1028
    ^mclass notNil and:[mclass isMetaclass]
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1029
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1030
    "Created: / 22-08-2012 / 12:27:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1031
! !
ba54c818827d - more reflection stuff moved to JavaMirror
vranyj1
parents: 1617
diff changeset
  1032
1649
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1033
!Method methodsFor:'accessing-java'!
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1034
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1035
javaClass
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1036
    "For compatibiliry with JavaMethod"
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1037
    ^mclass
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1038
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1039
    "Created: / 22-08-2012 / 13:20:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1040
! !
0af82006c0b2 - some more support for calling Smalltalk from Groovy. Crashes VM now :-)
vranyj1
parents: 1648
diff changeset
  1041
1691
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1042
!Object methodsFor:'accessing-Java'!
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1043
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1044
getJavaLockWord
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1045
    "Returns a Java lock word for given object. The returned
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1046
     value is 
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1047
        - either SmallInteger that encodes the thinlock
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1048
        - or a fat lock, instance of JavaMonitor
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1049
    "
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1050
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1051
    "/For nonJava objects, always return fatlock
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1052
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1053
    ^self getJavaMonitor
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1054
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1055
    "Created: / 26-08-2012 / 14:03:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1056
! !
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1057
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1058
!Object methodsFor:'accessing-Java'!
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1059
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1060
getJavaMonitor
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1061
    "Returns fat JavaMonitor associated with the receiver"
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1062
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1063
    ^JavaVM getJavaMonitorFor: self
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1064
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1065
    "Created: / 26-08-2012 / 18:35:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1066
! !
826f8d7dc0df thinlocks reintegrated
vranyj1
parents: 1690
diff changeset
  1067
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1068
!Object methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1069
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1070
isGroovyClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1071
    ^false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1072
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1073
    "Created: / 18-02-2012 / 20:29:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1074
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1075
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1076
!Object methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1077
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1078
isJavaArray
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1079
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1080
    ^self class isJavaArrayClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1081
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1082
    "Created: / 19-12-2010 / 17:05:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1083
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1084
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1085
!Object methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1086
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1087
isJavaNameAndType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1088
    "return true, if given object represents name and type struct in java constant pool"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1089
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1090
    ^ false.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1091
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1092
    "Created: / 10-05-2011 / 12:21:52 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1093
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1094
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1095
!Object methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1096
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1097
isJavaPackage
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1098
    "return true, if the receiver is a java package.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1099
     False is returned here - the method is only redefined in JavaPackage."
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1100
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1101
    ^ false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1102
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1103
    "Created: / 09-08-2011 / 09:35:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1104
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1105
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1106
!Object methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1107
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1108
isJavaRef
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1109
"return true, if given object represents reference in java constant pool"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1110
^ false.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1111
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1112
    "Created: / 08-04-2011 / 16:12:45 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1113
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1114
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1115
!Object methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1116
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1117
isJavaWrapperClass
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1118
    "return true, if this is a java wrapper class, i.e, java.lang.Integer, java.lang.Boolean etc."
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1119
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1120
    ^ false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1121
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1122
    "Created: / 01-01-2012 / 17:25:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1123
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1124
1617
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1125
!Object methodsFor:'testing'!
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1126
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1127
isSocket
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1128
    "return true, if the receiver is some kind of socket;
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1129
     false returned here - the method is only redefined in Socket."
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1130
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1131
    ^ false
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1132
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1133
    "Created: / 17-08-2012 / 15:32:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1134
! !
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1135
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1136
!Object methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1137
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1138
javaBox: anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1139
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1140
    ^anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1141
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1142
    "Created: / 15-08-2011 / 10:52:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1143
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1144
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1145
!Object methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1146
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1147
javaUnwrap: anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1148
    "Unwraps the objects. Possibly call on the wrapped class"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1149
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1150
    ^anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1151
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1152
    "Created: / 10-12-2011 / 19:51:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1153
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1154
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1155
!Object methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1156
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1157
javaUnwrapFrom: javaType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1158
    ^ self.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1159
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1160
    "Created: / 10-12-2011 / 19:51:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1161
    "Created: / 30-12-2011 / 15:22:06 / kursjan <kursjan@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1162
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1163
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1164
!Object methodsFor:'autoboxing support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1165
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1166
javaWrap: anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1167
    "Wraps the receiver into corresponding Java object"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1168
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1169
    ^anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1170
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1171
    "Created: / 26-12-2011 / 00:57:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1172
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1173
1807
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1174
!Object methodsFor:'autoboxing support'!
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1175
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1176
javaWrapRequired
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1177
    "Returns true, if a #javaWrap: has to be called
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1178
     prior an instance of Smalltalk object is passed 
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1179
     as an argument to Java method, whoose formal tyoe
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1180
     is the receiver. 
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1181
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1182
     Example:
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1183
     Let's say the Java method is declared as
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1184
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1185
     publid void setCount(int c) { ... } 
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1186
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1187
     and Smalltalk calls
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1188
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1189
     obj setCount: 0
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1190
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1191
     then 'Integer javaWrapRequired' should return false as there
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1192
     is no need to wrap SmallInt as it represent java int values.
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1193
     (Integer is formal type of argument c.
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1194
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1195
     If the method is declared as:
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1196
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1197
     publid void setCount(java.lang.Integer c) { ... }
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1198
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1199
     then 'java.lang.Integer javaWrapRequired' should return true
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1200
     as the integer value must be wrapped into an instance of
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1201
     java.lang.Integer before it is passed to a Java method.
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1202
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1203
     "
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1204
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1205
    ^false
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1206
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1207
    "Created: / 05-11-2012 / 00:29:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1208
! !
d86265afd4f1 Added missing Object>>javaWrapRequired
vranyj1
parents: 1765
diff changeset
  1209
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1210
!Object class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1211
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1212
isJavaArrayClass
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1213
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1214
    ^false
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1215
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1216
    "Created: / 19-12-2010 / 17:05:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1217
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1218
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1219
!Object class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1220
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1221
isJavaClassType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1222
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1223
    ^false
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1224
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1225
    "Created: / 11-02-2011 / 08:08:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1226
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1227
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1228
!Object class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1229
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1230
isJavaReferenceType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1231
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1232
    ^false
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1233
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1234
    "Created: / 20-12-2010 / 21:52:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1235
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1236
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1237
!Object class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1238
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1239
isJavaType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1240
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1241
    ^false
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1242
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1243
    "Created: / 20-12-2010 / 21:52:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1244
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1245
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1246
!Process methodsFor:'Java protocol'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1247
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1248
clearInterrupted
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1249
    JavaVM clearInterrupted: self
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1250
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1251
    "Created: / 30-11-2011 / 10:44:26 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1252
    "Modified: / 16-08-2012 / 22:03:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1253
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1254
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1255
!Process methodsFor:'Java protocol'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1256
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1257
isInterrupted
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1258
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1259
    ^ JavaVM isInterrupted: self.
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1260
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1261
    "Created: / 30-11-2011 / 12:12:33 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1262
    "Modified: / 16-08-2012 / 21:56:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1263
! !
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1264
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1265
!Process methodsFor:'queries'!
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1266
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1267
isParked
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1268
    "return true, iff the receiver is parked (by means of sun.misc.Unsafe.park() )"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1269
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1270
    ^ (state == #parked)
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1271
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1272
    "Created: / 16-08-2012 / 22:13:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1273
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1274
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1275
!Process methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1276
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1277
isSleeping
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1278
    "return true, iff the receiver is sleeping on Delay"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1279
    
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1280
    ^ (state == #sleep)
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1281
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1282
    "Created: / 30-11-2011 / 13:35:18 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1283
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1284
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1285
!Process methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1286
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1287
isWaiting
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1288
    "return true, iff the receiver is waiting on semaphore or something"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1289
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1290
    ^ (state == #wait)
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1291
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1292
    "Created: / 20-11-2011 / 20:55:11 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1293
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1294
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1295
!Process methodsFor:'Java protocol'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1296
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1297
javaInterrupt
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1298
    self isWaiting ifTrue: [
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1299
        self interruptWith: [
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1300
            JavaVM throwInterruptedException: 'thread has been interrupted during wait'.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1301
            self terminate
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1302
        ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1303
        ^self
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1304
    ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1305
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1306
    self isSleeping ifTrue: [      
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1307
        self interruptWith: [
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1308
            JavaVM throwInterruptedException: 'thread has been interrupted during sleep'.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1309
            self terminate
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1310
        ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1311
        ^self
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1312
    ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1313
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1314
    self isParked ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1315
        self setInterrupted.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1316
        JavaVM unpark: self.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1317
        ^self.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1318
    ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1319
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1320
    self setInterrupted
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1321
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1322
    "Created: / 30-11-2011 / 13:35:18 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1323
    "Modified: / 16-08-2012 / 22:14:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1324
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1325
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1326
!Process methodsFor:'Java protocol'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1327
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1328
setInterrupted
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1329
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1330
    JavaVM setInterrupted: self
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1331
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1332
    "Created: / 30-11-2011 / 10:44:37 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1333
    "Modified: / 16-08-2012 / 22:03:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1334
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1335
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1336
!ProgrammingLanguage methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1337
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1338
isGroovy
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1339
    "true iff this is a Groovy language"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1340
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1341
    ^ false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1342
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1343
    "Created: / 13-04-2012 / 17:47:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1344
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1345
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1346
!ProgrammingLanguage methodsFor:'testing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1347
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1348
isJavaLike
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1349
    "true if receiver is kind of Java language (based on Java)"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1350
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1351
    ^ false
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1352
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1353
    "Created: / 13-04-2012 / 17:48:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1354
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1355
1276
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1356
!ProjectDefinition class methodsFor:'description - java'!
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1357
1951
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1358
javaBundle
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1359
    "Defines a Java code bundle provided by this package.
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1360
     Used by STX:LIBJAVA"
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1361
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1362
    ^nil
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1363
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1364
    "Created: / 15-01-2013 / 16:49:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1365
! !
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1366
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1367
!ProjectDefinition class methodsFor:'description - java'!
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1893
diff changeset
  1368
1276
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1369
javaClassPath
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1370
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1371
    "Defines a Java class path containing java classes/jars
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1372
     required by this package"
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1373
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1374
    ^#()
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1375
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1376
    "Created: / 13-12-2011 / 23:48:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1377
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1378
1276
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1379
!ProjectDefinition class methodsFor:'description - java'!
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1380
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1381
javaSourcePath
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1382
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1383
    "Defines paths to Java source files (for packages that
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1384
     contains Java code"    
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1385
    ^#()
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1386
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1387
    "Created: / 13-12-2011 / 23:49:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5a302466ecb8 Default class path hanling changed, now each Smalltalk/X package can define its own class path, that is included initial class path
vranyj1
parents: 1263
diff changeset
  1388
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1389
1615
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1390
!Semaphore methodsFor:'waiting'!
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1391
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1392
parkWithTimeoutMs:milliSeconds
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1393
    "Same as #waitWithTimeoutMs: but sets the state to #parked.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1394
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1395
     Stupid, that I have to copy-paste this method...
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1396
    "
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1397
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1398
    |activeProcess timeoutOccured wasBlocked timeoutBlock now endTime|
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1399
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1400
    wasBlocked := OperatingSystem blockInterrupts.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1401
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1402
    count <= 0 ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1403
        "with zero-timeout, this is a poll"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1404
        milliSeconds == 0 ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1405
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1406
            ^ nil
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1407
        ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1408
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1409
        activeProcess := Processor activeProcess.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1410
        timeoutOccured := false.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1411
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1412
        milliSeconds notNil ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1413
            "Wait with timeout: calculate the end-time"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1414
            now := OperatingSystem getMillisecondTime.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1415
            endTime := OperatingSystem millisecondTimeAdd:now and:milliSeconds.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1416
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1417
            timeoutBlock := [timeoutOccured := true. timeoutBlock:= nil. Processor resume:activeProcess].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1418
            Processor addTimedBlock:timeoutBlock for:activeProcess atMilliseconds:endTime.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1419
        ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1420
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1421
        "
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1422
         need a while-loop here, since more than one process may
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1423
         wait for it and another one may also wake up.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1424
         Thus, the count is not always non-zero after returning from
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1425
         suspend.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1426
        "
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1427
        [
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1428
            self addWaitingProcess:activeProcess.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1429
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1430
            "
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1431
             for some more descriptive info in processMonitor ...
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1432
             ... set the state to #wait (instead of #suspend)
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1433
            "
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1434
            [
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1435
                "sleep until resumed..."
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1436
                activeProcess suspendWithState:#parked.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1437
            ] ifCurtailed:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1438
                "interrupts are not blocked when entered through Processor>>#interruptActive"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1439
                OperatingSystem blockInterrupts.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1440
                timeoutBlock notNil ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1441
                    Processor removeTimedBlock:timeoutBlock.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1442
                    timeoutBlock := nil.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1443
                ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1444
                self removeWaitingProcess:activeProcess.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1445
                wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1446
            ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1447
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1448
            self removeWaitingProcess:activeProcess.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1449
            timeoutOccured ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1450
                wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1451
                ^ nil
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1452
            ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1453
        ] doUntil:[count > 0].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1454
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1455
        timeoutBlock notNil ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1456
            Processor removeTimedBlock:timeoutBlock.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1457
            timeoutBlock := nil.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1458
        ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1459
    ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1460
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1461
    "if we come here, we have accquired the semaphore"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1462
    count := count - 1.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1463
    count == 0 ifTrue:[
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1464
        lastOwner := Processor activeProcess.
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1465
    ].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1466
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1467
    ^ self
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1468
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1469
    "Created: / 16-08-2012 / 20:53:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1470
! !
dde13d0a263e Initial support for park()/unpark()
vranyj1
parents: 1609
diff changeset
  1471
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1472
!Set methodsFor:'javaProtocol'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1473
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1474
java__contains:anObject
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1475
         ^ self contains: [:el | anObject = el ] 
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1476
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1477
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1478
!ShortFloat class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1479
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1480
isJavaPrimitiveType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1481
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1482
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1483
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1484
    "Created: / 06-02-2011 / 17:21:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1485
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1486
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1487
!ShortFloat class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1488
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1489
javaArrayClass
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1490
    ^ FloatArray
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1491
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1492
    "Created: / 11-02-2011 / 10:50:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1493
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1494
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1495
!ShortFloat class methodsFor:'autoboxing support'!
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1496
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
  1497
javaBox: anObject
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1498
    | wrapper |
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1499
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
  1500
    wrapper := (JavaVM classForName: 'java.lang.Float') new.
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1501
    wrapper perform: #'<init>(F)V' with: anObject.
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1032
diff changeset
  1502
    ^ wrapper
917
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1503
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1504
    "Created: / 16-08-2011 / 09:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ecd1a00132f1 - added JavaEvaluator
vranyj1
parents: 916
diff changeset
  1505
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1506
851
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1507
!ShortFloat class methodsFor:'accessing'!
fc38cc6ed478 Small refactoring
vranyj1
parents: 826
diff changeset
  1508
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1509
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1510
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1511
    ^'float'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1512
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1513
    "Modified: / 25-02-2011 / 18:59:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1514
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1515
1386
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1516
!ShortFloat class methodsFor:'accessing'!
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1517
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1518
javaWrapperClass
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1519
    ^(Java classForName: 'java.lang.Float')
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1520
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1521
    "Created: / 24-02-2012 / 19:42:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5a5fc5c71e48 Added lost methods
vranyj1
parents: 1384
diff changeset
  1522
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1523
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1524
!SignedIntegerArray class methodsFor:'testing'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1525
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1526
isInterface
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1527
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1528
    ^false
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1529
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1530
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1531
!SignedIntegerArray class methodsFor:'queries'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1532
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1533
isJavaArrayClass
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1534
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1535
    ^true
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1536
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1537
    "Created: / 06-02-2011 / 15:16:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1538
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1539
905
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1540
!SignedIntegerArray class methodsFor:'accessing-java'!
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1541
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1542
javaArrayClass
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1543
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1544
    ^JavaArray javaArrayClassFor: SignedIntegerArray
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1545
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1546
    "Created: / 11-06-2011 / 23:42:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1547
    "Modified: / 10-08-2011 / 22:47:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1548
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1549
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1550
!SignedIntegerArray class methodsFor:'accessing'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1551
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1552
javaComponentClass
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1553
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1554
    ^ Integer
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1555
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1556
    "Created: / 25-06-2011 / 08:38:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1557
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1558
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1559
!SignedIntegerArray class methodsFor:'accessing'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1560
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1561
javaName
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1562
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1563
    ^'[I'.
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1564
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1565
    "Modified: / 25-02-2011 / 19:03:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1566
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1567
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1568
!SignedLongIntegerArray class methodsFor:'testing'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1569
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1570
isInterface
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1571
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1572
    ^false
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1573
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1574
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1575
!SignedLongIntegerArray class methodsFor:'queries'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1576
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1577
isJavaArrayClass
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1578
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1579
    ^true
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1580
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1581
    "Created: / 20-12-2010 / 22:47:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1582
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1583
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1584
!SignedLongIntegerArray class methodsFor:'queries'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1585
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1586
isJavaReferenceType
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1587
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1588
    "Java arrays are reference types"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1589
    ^true
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1590
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1591
    "Created: / 20-12-2010 / 22:30:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1592
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1593
927
vranyj1
parents: 925
diff changeset
  1594
!SignedLongIntegerArray class methodsFor:'accessing-java'!
vranyj1
parents: 925
diff changeset
  1595
vranyj1
parents: 925
diff changeset
  1596
javaArrayClass
vranyj1
parents: 925
diff changeset
  1597
vranyj1
parents: 925
diff changeset
  1598
    ^JavaArray javaArrayClassFor: SignedLongIntegerArray
vranyj1
parents: 925
diff changeset
  1599
vranyj1
parents: 925
diff changeset
  1600
    "Modified: / 10-08-2011 / 22:47:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vranyj1
parents: 925
diff changeset
  1601
    "Created: / 26-08-2011 / 18:29:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vranyj1
parents: 925
diff changeset
  1602
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1603
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1604
!SignedLongIntegerArray class methodsFor:'accessing'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1605
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1606
javaComponentClass
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1607
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1608
    ^LargeInteger
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1609
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1610
    "Modified: / 25-06-2011 / 08:38:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1611
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1612
866
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1613
!SignedLongIntegerArray class methodsFor:'accessing'!
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1614
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1615
javaName
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1616
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1617
    ^'[J'.
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1618
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1619
    "Modified: / 25-02-2011 / 19:03:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10d1f47af6d9 Few fixes for Mauve...
vranyj1
parents: 865
diff changeset
  1620
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1621
1384
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1622
!SignedWordArray class methodsFor:'queries'!
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1623
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1624
isJavaArrayClass
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1625
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1626
    ^true
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1627
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1628
    "Created: / 20-12-2010 / 22:47:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1629
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1630
1384
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1631
!SignedWordArray class methodsFor:'queries'!
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1632
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1633
isJavaReferenceType
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1634
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1635
    "Java arrays are reference types"
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1636
    ^true
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1637
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1638
    "Created: / 20-12-2010 / 22:30:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1639
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1640
1384
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1641
!SignedWordArray class methodsFor:'accessing'!
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1642
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1643
javaComponentClass
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1644
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1645
    ^JavaShort
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1646
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1647
    "Modified: / 24-02-2012 / 17:46:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1648
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1649
1384
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1650
!SignedWordArray class methodsFor:'accessing'!
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1651
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1652
javaName
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1653
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1654
    ^'[S'.
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1655
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1656
    "Modified: / 24-02-2012 / 17:46:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d62dd4b29c22 Fixes in INSTANCE_OF + added missing method. SAXON-B now works again
vranyj1
parents: 1376
diff changeset
  1657
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1658
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1659
!SmallInteger methodsFor:'autoboxing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1660
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1661
javaUnwrapFrom: javaType
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1662
    javaType = #boolean ifTrue: [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1663
        ^ self = 1
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1664
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1665
    ^ self
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1666
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1667
    "Created: / 30-12-2011 / 15:22:52 / kursjan <kursjan@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1668
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1669
1617
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1670
!Socket methodsFor:'testing'!
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1671
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1672
isSocket
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1673
    ^true
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1674
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1675
    "Created: / 17-08-2012 / 15:32:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1676
! !
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1677
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1678
!Socket methodsFor:'special'!
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1679
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1680
reOpenIfPossible
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1681
    "If the socket was listening (server-sockets), try to reopen it"
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1682
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1683
    | pno |
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1684
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1685
    listening ifFalse:[ ^ self ].
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1686
    pno := port.
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1687
    [
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1688
        self domain: domain type: socketType protocol: protocol reuseAddress:true.
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1689
        self bindTo:port address:nil.
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1690
        self listenFor: 5
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1691
    ] on: OpenError do:[
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1692
        "Notning, socket could not be reopened"
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1693
    ].
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1694
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1695
    "Created: / 17-08-2012 / 15:43:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1696
! !
bc02a3b4cad8 - snapshot restart support for Java code
vranyj1
parents: 1615
diff changeset
  1697
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1698
!String methodsFor:'converting'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1699
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1700
asArrayOfSubstringsSeparatedBy:aSeparator
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1701
    "Modified version of asArrayOfSubstrings"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1702
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1703
    |substrings start end|
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1704
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1705
    substrings := OrderedCollection new.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1706
    start := 1.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1707
    [start <= self size] whileTrue:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1708
	(self at:start) = aSeparator ifFalse:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1709
	    end := start + 1.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1710
	    [
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1711
		end <= self size and:[(self at:end) ~= aSeparator]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1712
	    ] whileTrue:[end := end + 1].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1713
	    substrings add:(self copyFrom:start to:end - 1).
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1714
	    start := end - 1
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1715
	].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1716
	start := start + 1
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1717
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1718
    ^ substrings asArray
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1719
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1720
    "Created: / 07-02-2011 / 11:18:03 / Marcel Hlopko <hlopik@gmail.com>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1721
    "Modified: / 08-02-2011 / 01:08:15 / Marcel Hlopko <hlopik@gmail.com>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1722
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1723
1959
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1724
!String class methodsFor:'accessing'!
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1725
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1726
javaName
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1727
    ^ '[C'
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1728
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1729
    "Created: / 18-01-2013 / 22:27:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1730
! !
11cd2c406930 Bugfix: added lost method String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1953
diff changeset
  1731
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1732
!UndefinedObject class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1733
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1734
isJavaPrimitiveType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1735
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1736
    "void"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1737
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1738
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1739
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1740
    "Created: / 21-12-2010 / 22:52:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1741
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1742
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1743
!UndefinedObject class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1744
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1745
javaName
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1746
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1747
    ^'void'.
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1748
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1749
    "Modified: / 25-02-2011 / 18:59:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1750
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1751
1960
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1752
!Unicode16String class methodsFor:'accessing'!
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1753
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1754
javaName
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1755
    ^ '[C'
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1756
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1757
    "Created: / 18-01-2013 / 22:27:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1758
! !
ce6c25e4838a Bugfix: added lost method Unicode16String class>>javaName.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1959
diff changeset
  1759
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1760
!UserPreferences methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1761
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1762
javaRelease
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1763
    "Return the Java release according to the preferences
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1764
     or nil, if not set"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1765
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1766
    | rel sel |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1767
    sel := self javaReleaseSelector.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1768
    sel notNil ifTrue:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1769
        rel := JavaRelease perform: sel asSymbol ifNotUnderstood:[nil]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1770
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1771
    ^rel
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1772
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1773
    "Created: / 27-07-2012 / 10:12:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1774
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1775
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1776
!UserPreferences methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1777
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1778
javaReleaseSelector
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1779
    ^ self at:#javaReleaseSelector ifAbsent:[nil].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1780
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1781
    "
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1782
        UserPreferences current javaReleaseSelector
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1783
        UserPreferences current javaReleaseSelector: #openJDK6
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1784
        UserPreferences current javaReleaseSelector: nil
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1785
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1786
        Java release
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1787
    "
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1788
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1789
    "Created: / 27-07-2012 / 10:02:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1790
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1791
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1792
!UserPreferences methodsFor:'accessing-java'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1793
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1794
javaReleaseSelector: name
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1795
    "Sets the Java release to use. selector must be one of
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1796
     releases defined in JavaRelease, protocol 'instance creation'"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1797
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1798
    self at:#javaReleaseSelector put: name.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1799
    Java notNil ifTrue:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1800
        Java reinitializeRelease
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1801
    ].
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1802
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1803
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1804
    "
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1805
        UserPreferences current javaReleaseSelector
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1806
        UserPreferences current javaReleaseSelector: #openJDK7
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1807
        UserPreferences current javaReleaseSelector: nil
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1808
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1809
        Java release
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1810
        Java release:nil
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1811
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1812
        Java reinitializeRelease
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1813
    "
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1814
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1815
    "Created: / 27-07-2012 / 10:02:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1816
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1817
826
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
  1818
!WordArray class methodsFor:'testing'!
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
  1819
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
  1820
isInterface
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
  1821
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
  1822
    ^false
db53b9c842d7 - TestletTestCaseProxy: debugging support improved.
vranyj1
parents: 774
diff changeset
  1823
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1824
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1825
!WordArray class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1826
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1827
isJavaArrayClass
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1828
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1829
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1830
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1831
    "Created: / 20-12-2010 / 22:47:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1832
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1833
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1834
!WordArray class methodsFor:'queries'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1835
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1836
isJavaReferenceType
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1837
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1838
    "Java arrays are reference types"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1839
    ^true
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1840
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1841
    "Created: / 20-12-2010 / 22:30:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1842
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1843
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1844
!WordArray class methodsFor:'accessing-java'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1845
905
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1846
javaArrayClass
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1847
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1848
    ^JavaArray javaArrayClassFor: WordArray
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1849
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1850
    "Created: / 11-06-2011 / 23:42:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1851
    "Modified: / 10-08-2011 / 22:46:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1852
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1853
905
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1854
!WordArray class methodsFor:'accessing-java'!
d03d9e05c581 Temporary commit. method resolving fixed
vranyj1
parents: 901
diff changeset
  1855
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1856
javaComponentClass
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1857
1159
afe8ab363ca3 Mainly fixes:
vranyj1
parents: 1151
diff changeset
  1858
    ^JavaShort
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1859
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1860
    "Created: / 20-12-2010 / 22:13:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1861
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1862
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1863
!WordArray class methodsFor:'accessing'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1864
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1865
javaName
1225
30600ca8173c ok now we enabled permissions and groovy maybe does not work :/
hlopkmar
parents: 1209
diff changeset
  1866
    ^ '[S'.
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1867
1225
30600ca8173c ok now we enabled permissions and groovy maybe does not work :/
hlopkmar
parents: 1209
diff changeset
  1868
    "Modified: / 06-12-2011 / 16:43:59 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
  1869
! !
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1870
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1871
!WrappedMethod methodsFor:'accessing'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1872
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1873
descriptor
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1874
    "Returns descriptor object (for wrapped Java methods)"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1875
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1876
    | orig |
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1877
    orig := self originalMethod.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1878
    ^(orig respondsTo: #descriptor) ifTrue:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1879
        orig descriptor
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1880
    ] ifFalse:[
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1881
        self doesNotUnderstand: (Message selector: #descriptor)
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1882
    ]
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1883
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1884
    "Created: / 16-12-2011 / 20:03:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1885
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1886
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1887
!WrappedMethod methodsFor:'queries'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1888
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1889
isAbstract
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1890
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1891
    ^self originalMethod isAbstract.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1892
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1893
    "Created: / 04-12-2011 / 11:24:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1894
! !
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1895
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1896
!ZipArchive methodsFor:'reading - java support'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1897
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1898
nextBytes: bytesToRead of: zmember startingAt: pos into: b startingAt: off
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1899
1872
60e6afa5d5a9 Fix for ZIP remerged
vranyj1
parents: 1868
diff changeset
  1900
    file position0Based: (self dataStartOf: zmember) + startOfArchive + pos.
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1901
    ^ file nextBytes: bytesToRead into: b startingAt: off.
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1902
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1903
    "Created: / 01-05-2011 / 16:21:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1872
60e6afa5d5a9 Fix for ZIP remerged
vranyj1
parents: 1868
diff changeset
  1904
    "Modified: / 10-12-2012 / 05:41:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1865
96e851c925de Updates in .zip support to reflect changes in ZipArchive.
vranyj1
parents: 1864
diff changeset
  1905
! !
96e851c925de Updates in .zip support to reflect changes in ZipArchive.
vranyj1
parents: 1864
diff changeset
  1906
1609
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1907
!stx_libjava class methodsFor:'documentation'!
7a2627788ad7 - JavaMirror: fixed method/constructor reflection for classes loaded by other than system/primordial classloader.
vranyj1
parents: 1598
diff changeset
  1908
1876
482ad5ebe5da Merged some fixes from jv's repo
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1872
diff changeset
  1909
extensionsVersion_HG
482ad5ebe5da Merged some fixes from jv's repo
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1872
diff changeset
  1910
482ad5ebe5da Merged some fixes from jv's repo
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1872
diff changeset
  1911
    ^ '$Changeset: <not expanded> $'
1886
746919e0fc34 bugfix in smalltalk2java lookup with nil arguments
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1877
diff changeset
  1912
! !