JavaDescriptor.st
branchcvs_MAIN
changeset 3360 1a8899091305
parent 3324 a58245c0e83a
child 3412 df11bb428463
equal deleted inserted replaced
3351:9be260d71c34 3360:1a8899091305
     1 "
     1 "
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
     2  COPYRIGHT (c) 1996-2015 by Claus Gittinger
     3 
     3 
     4  New code and modifications done at SWING Research Group [1]:
     4  New code and modifications done at SWING Research Group [1]:
     5 
     5 
     6  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
     6  COPYRIGHT (c) 2010-2015 by Jan Vrany, Jan Kurs and Marcel Hlopko
     7                             SWING Research Group, Czech Technical University in Prague
     7                             SWING Research Group, Czech Technical University in Prague
     8 
     8 
     9  This software is furnished under a license and may be used
     9  This software is furnished under a license and may be used
    10  only in accordance with the terms of that license and with the
    10  only in accordance with the terms of that license and with the
    11  inclusion of the above copyright notice.   This software may not
    11  inclusion of the above copyright notice.   This software may not
    29 
    29 
    30 !JavaDescriptor class methodsFor:'documentation'!
    30 !JavaDescriptor class methodsFor:'documentation'!
    31 
    31 
    32 copyright
    32 copyright
    33 "
    33 "
    34  COPYRIGHT (c) 1996-2011 by Claus Gittinger
    34  COPYRIGHT (c) 1996-2015 by Claus Gittinger
    35 
    35 
    36  New code and modifications done at SWING Research Group [1]:
    36  New code and modifications done at SWING Research Group [1]:
    37 
    37 
    38  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
    38  COPYRIGHT (c) 2010-2015 by Jan Vrany, Jan Kurs and Marcel Hlopko
    39                             SWING Research Group, Czech Technical University in Prague
    39                             SWING Research Group, Czech Technical University in Prague
    40 
    40 
    41  This software is furnished under a license and may be used
    41  This software is furnished under a license and may be used
    42  only in accordance with the terms of that license and with the
    42  only in accordance with the terms of that license and with the
    43  inclusion of the above copyright notice.   This software may not
    43  inclusion of the above copyright notice.   This software may not
   151                 at: $D put: DoubleArray;
   151                 at: $D put: DoubleArray;
   152                 at: $F put: FloatArray;
   152                 at: $F put: FloatArray;
   153                 at: $I put: SignedIntegerArray;
   153                 at: $I put: SignedIntegerArray;
   154                 at: $J put: SignedLongIntegerArray;
   154                 at: $J put: SignedLongIntegerArray;
   155                 at: $S put: WordArray;
   155                 at: $S put: WordArray;
   156                 at: $Z put: BooleanArray;
   156                 at: $Z put: JavaBooleanArray;
   157                 yourself
   157                 yourself
   158 
   158 
   159     "Created: / 25-11-2010 / 17:51:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   159     "Created: / 25-11-2010 / 17:51:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   160     "Modified: / 10-08-2011 / 00:48:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   160     "Modified: / 31-01-2014 / 12:31:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   161     "Modified (comment): / 24-02-2012 / 19:40:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   162 ! !
   161 ! !
   163 
   162 
   164 !JavaDescriptor class methodsFor:'queries'!
   163 !JavaDescriptor class methodsFor:'queries'!
   165 
   164 
   166 isJavaPrimitiveArrayName: className 
   165 isJavaPrimitiveArrayName: className 
   305 ! !
   304 ! !
   306 
   305 
   307 !JavaDescriptor class methodsFor:'documentation'!
   306 !JavaDescriptor class methodsFor:'documentation'!
   308 
   307 
   309 version_CVS
   308 version_CVS
   310     ^ '$Header: /cvs/stx/stx/libjava/JavaDescriptor.st,v 1.5 2013-09-06 00:41:22 vrany Exp $'
   309     ^ '$Header: /cvs/stx/stx/libjava/JavaDescriptor.st,v 1.6 2015-01-28 02:10:50 vrany Exp $'
   311 !
   310 !
   312 
   311 
   313 version_HG
   312 version_HG
   314 
   313 
   315     ^ '$Changeset: <not expanded> $'
   314     ^ '$Changeset: <not expanded> $'
   316 !
   315 !
   317 
   316 
   318 version_SVN
   317 version_SVN
   319     ^ '§Id§'
   318     ^ 'Id'
   320 ! !
   319 ! !
   321 
   320 
   322 
   321 
   323 JavaDescriptor initialize!
   322 JavaDescriptor initialize!