JavaPrimitiveMirror.st
branchcvs_MAIN
changeset 3517 c541d49ddaa5
parent 3324 a58245c0e83a
equal deleted inserted replaced
3516:73dd0ba82a4f 3517:c541d49ddaa5
    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:#JavaPrimitiveMirror
    25 JavaMirror subclass:#JavaPrimitiveMirror
    24 	instanceVariableNames:''
    26 	instanceVariableNames:''
    25 	classVariableNames:''
    27 	classVariableNames:''
    26 	poolDictionaries:'JavaVMData'
    28 	poolDictionaries:'JavaVMData'
    99 !
   101 !
   100 
   102 
   101 getModifiers
   103 getModifiers
   102     "Return class modifiers (public/abstract/final...)"
   104     "Return class modifiers (public/abstract/final...)"
   103 
   105 
   104     ^ JavaConstants ACC_ABSTRACT | JavaConstants ACC_FINAL | JavaConstants ACC_PUBLIC
   106     ^ (JavaConstants ACC_ABSTRACT bitOr: JavaConstants ACC_FINAL) bitOr: JavaConstants ACC_PUBLIC
   105 
   107 
   106     "Modified: / 22-08-2012 / 11:02:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   108     "Modified: / 22-08-2012 / 11:02:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   107 ! !
   109 ! !
   108 
   110 
   109 !JavaPrimitiveMirror class methodsFor:'documentation'!
   111 !JavaPrimitiveMirror class methodsFor:'documentation'!
   110 
   112 
       
   113 version
       
   114     ^ '$Header$'
       
   115 !
       
   116 
       
   117 version_CVS
       
   118     ^ '$Header$'
       
   119 !
       
   120 
   111 version_HG
   121 version_HG
   112 
   122 
   113     ^ '$Changeset: <not expanded> $'
   123     ^ '$Changeset: <not expanded> $'
   114 ! !
   124 ! !
   115 
   125