src/Java.st
branchjk_new_structure
changeset 1155 d6f6d5fc0343
parent 1152 040cba55a7d2
child 1204 6c2b887399e8
equal deleted inserted replaced
1154:752b769c6fb4 1155:d6f6d5fc0343
     1 "
     1 "
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
     3 
     3 
     4  New code and modification 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-2011 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 
       
     9  Parts of the code written by Claus Gittinger are under following
       
    10  license:
       
    11 
     8 
    12  This software is furnished under a license and may be used
     9  This software is furnished under a license and may be used
    13  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
    14  inclusion of the above copyright notice.   This software may not
    11  inclusion of the above copyright notice.   This software may not
    15  be provided or otherwise made available to, or used by, any
    12  be provided or otherwise made available to, or used by, any
    16  other person.  No title to or ownership of the software is
    13  other person.  No title to or ownership of the software is
    17  hereby transferred.
    14  hereby transferred.
    18 
    15 
    19  [1] Code written at SWING Research Group contain a signature
    16  [1] Code written at SWING Research Group contains a signature
    20      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,
    21      see the differences between this version and version stx:lib
    18      see the differences between this version and version stx:libjava
    22      as of 1.9.2010
    19      as of 1.9.2010
    23 "
    20 "
    24 "{ Package: 'stx:libjava' }"
    21 "{ Package: 'stx:libjava' }"
    25 
    22 
    26 Object subclass:#Java
    23 Object subclass:#Java
    39 
    36 
    40 copyright
    37 copyright
    41 "
    38 "
    42  COPYRIGHT (c) 1996-2011 by Claus Gittinger
    39  COPYRIGHT (c) 1996-2011 by Claus Gittinger
    43 
    40 
    44  New code and modification done at SWING Research Group [1]:
    41  New code and modifications done at SWING Research Group [1]:
    45 
    42 
    46  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
    43  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
    47                             SWING Research Group, Czech Technical University in Prague
    44                             SWING Research Group, Czech Technical University in Prague
    48 
       
    49  Parts of the code written by Claus Gittinger are under following
       
    50  license:
       
    51 
    45 
    52  This software is furnished under a license and may be used
    46  This software is furnished under a license and may be used
    53  only in accordance with the terms of that license and with the
    47  only in accordance with the terms of that license and with the
    54  inclusion of the above copyright notice.   This software may not
    48  inclusion of the above copyright notice.   This software may not
    55  be provided or otherwise made available to, or used by, any
    49  be provided or otherwise made available to, or used by, any
    56  other person.  No title to or ownership of the software is
    50  other person.  No title to or ownership of the software is
    57  hereby transferred.
    51  hereby transferred.
    58 
    52 
    59  [1] Code written at SWING Research Group contain a signature
    53  [1] Code written at SWING Research Group contains a signature
    60      of one of the above copright owners. For exact set of such code
    54      of one of the above copright owners. For exact set of such code,
    61      see the differences between this version and version stx:lib
    55      see the differences between this version and version stx:libjava
    62      as of 1.9.2010
    56      as of 1.9.2010
    63 
    57 
    64 "
       
    65 !
       
    66 
       
    67 documentation
       
    68 "Java class is main entry point or - you might say -
       
    69 facade to the Java world inside Smalltalk. It also 
       
    70 serves as configuration entity - e.g. controlling 
       
    71 classpath, source paths, etc. Java class is responsible
       
    72 for correct initialization and glueing other classes.
       
    73 "
    58 "
    74 ! !
    59 ! !
    75 
    60 
    76 !Java class methodsFor:'accessing'!
    61 !Java class methodsFor:'accessing'!
    77 
    62