src/JavaAnnotationContainer.st
branchjk_new_structure
changeset 877 f5a5b93e1c78
parent 752 ff7bc6428c9c
child 1152 040cba55a7d2
equal deleted inserted replaced
876:caad932b2f88 877:f5a5b93e1c78
       
     1 "
       
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
       
     3  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
       
     4                             SWING Research Group, Czech Technical University in Prague
       
     5 
       
     6  Parts of the code written by Claus Gittinger are under following
       
     7  license:
       
     8 
       
     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
       
    11  inclusion of the above copyright notice.   This software may not
       
    12  be provided or otherwise made available to, or used by, any
       
    13  other person.  No title to or ownership of the software is
       
    14  hereby transferred.
       
    15 
       
    16  Parts of the code written at SWING Reasearch Group [1] are MIT licensed:
       
    17 
       
    18  Permission is hereby granted, free of charge, to any person
       
    19  obtaining a copy of this software and associated documentation
       
    20  files (the 'Software'), to deal in the Software without
       
    21  restriction, including without limitation the rights to use,
       
    22  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    23  copies of the Software, and to permit persons to whom the
       
    24  Software is furnished to do so, subject to the following
       
    25  conditions:
       
    26 
       
    27  The above copyright notice and this permission notice shall be
       
    28  included in all copies or substantial portions of the Software.
       
    29 
       
    30  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    31  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    32  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    33  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    34  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    35  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    36  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    37  OTHER DEALINGS IN THE SOFTWARE.
       
    38 
       
    39  [1] Code written at SWING Research Group contain a signature
       
    40      of one of the above copright owners.
       
    41 "
     1 "{ Package: 'stx:libjava' }"
    42 "{ Package: 'stx:libjava' }"
     2 
    43 
     3 Object subclass:#JavaAnnotationContainer
    44 Object subclass:#JavaAnnotationContainer
     4 	instanceVariableNames:'runtimeVisible runtimeInvisible parent'
    45 	instanceVariableNames:'runtimeVisible runtimeInvisible parent'
     5 	classVariableNames:''
    46 	classVariableNames:''
    12 "
    53 "
    13  No other class instance variables are inherited by this class.
    54  No other class instance variables are inherited by this class.
    14 "
    55 "
    15 !
    56 !
    16 
    57 
       
    58 !JavaAnnotationContainer class methodsFor:'documentation'!
       
    59 
       
    60 copyright
       
    61 "
       
    62  COPYRIGHT (c) 1996-2011 by Claus Gittinger
       
    63  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
       
    64                             SWING Research Group, Czech Technical University in Prague
       
    65 
       
    66  Parts of the code written by Claus Gittinger are under following
       
    67  license:
       
    68 
       
    69  This software is furnished under a license and may be used
       
    70  only in accordance with the terms of that license and with the
       
    71  inclusion of the above copyright notice.   This software may not
       
    72  be provided or otherwise made available to, or used by, any
       
    73  other person.  No title to or ownership of the software is
       
    74  hereby transferred.
       
    75 
       
    76  Parts of the code written at SWING Reasearch Group [1] are MIT licensed:
       
    77 
       
    78  Permission is hereby granted, free of charge, to any person
       
    79  obtaining a copy of this software and associated documentation
       
    80  files (the 'Software'), to deal in the Software without
       
    81  restriction, including without limitation the rights to use,
       
    82  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    83  copies of the Software, and to permit persons to whom the
       
    84  Software is furnished to do so, subject to the following
       
    85  conditions:
       
    86 
       
    87  The above copyright notice and this permission notice shall be
       
    88  included in all copies or substantial portions of the Software.
       
    89 
       
    90  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    91  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    92  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    93  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    94  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    95  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    96  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    97  OTHER DEALINGS IN THE SOFTWARE.
       
    98 
       
    99  [1] Code written at SWING Research Group contain a signature
       
   100      of one of the above copright owners.
       
   101 
       
   102 "
       
   103 ! !
    17 
   104 
    18 !JavaAnnotationContainer class methodsFor:'instance creation'!
   105 !JavaAnnotationContainer class methodsFor:'instance creation'!
    19 
   106 
    20 for:parent 
   107 for:parent 
    21     ^self new initializeFor:parent.
   108     ^self new initializeFor:parent.