JavaArrayMirror.st
branchcvs_MAIN
changeset 3521 9e0b0a92d799
parent 3324 a58245c0e83a
equal deleted inserted replaced
3520:dbe362da7933 3521:9e0b0a92d799
    17      of one of the above copright owners. For exact set of such code,
    17      of one of the above copright owners. For exact set of such code,
    18      see the differences between this version and version stx:libjava
    18      see the differences between this version and version stx:libjava
    19      as of 1.9.2010
    19      as of 1.9.2010
    20 "
    20 "
    21 "{ Package: 'stx:libjava' }"
    21 "{ Package: 'stx:libjava' }"
       
    22 
       
    23 "{ NameSpace: Smalltalk }"
    22 
    24 
    23 JavaMirror subclass:#JavaArrayMirror
    25 JavaMirror subclass:#JavaArrayMirror
    24 	instanceVariableNames:''
    26 	instanceVariableNames:''
    25 	classVariableNames:''
    27 	classVariableNames:''
    26 	poolDictionaries:'JavaVMData'
    28 	poolDictionaries:'JavaVMData'
   101 !
   103 !
   102 
   104 
   103 getModifiers
   105 getModifiers
   104     "Return class modifiers (public/abstract/final...)"
   106     "Return class modifiers (public/abstract/final...)"
   105 
   107 
   106     ^ JavaConstants ACC_ABSTRACT | JavaConstants ACC_FINAL | JavaConstants ACC_PUBLIC
   108     ^ (JavaConstants ACC_ABSTRACT bitOr: JavaConstants ACC_FINAL) bitOr: JavaConstants ACC_PUBLIC
   107 
   109 
   108     "Modified: / 22-08-2012 / 11:02:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   110     "Modified: / 22-08-2012 / 11:02:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   109 ! !
   111 ! !
   110 
   112 
   111 !JavaArrayMirror class methodsFor:'documentation'!
   113 !JavaArrayMirror class methodsFor:'documentation'!
   112 
   114 
       
   115 version
       
   116     ^ '$Header$'
       
   117 !
       
   118 
       
   119 version_CVS
       
   120     ^ '$Header$'
       
   121 !
       
   122 
   113 version_HG
   123 version_HG
   114 
   124 
   115     ^ '$Changeset: <not expanded> $'
   125     ^ '$Changeset: <not expanded> $'
   116 ! !
   126 ! !
   117 
   127