JavaLocalVariableTableEntry.st
changeset 2151 c0b6570c6f9b
parent 2108 ca8c4e7db2e8
child 2244 4647e0bc45c9
equal deleted inserted replaced
2150:3dbc038c151a 2151:c0b6570c6f9b
     1 "
     1 "
     2  COPYRIGHT (c) 1997 by eXept Software AG
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
     3               All Rights Reserved
     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:
     4 
     8 
     5  This software is furnished under a license and may be used
     9  This software is furnished under a license and may be used
     6  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
     7  inclusion of the above copyright notice.   This software may not
    11  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
    12  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
    13  other person.  No title to or ownership of the software is
    10  hereby transferred.
    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.
    11 "
    41 "
    12 
       
    13 
       
    14 
       
    15 "{ Package: 'stx:libjava' }"
    42 "{ Package: 'stx:libjava' }"
    16 
    43 
    17 Object subclass:#JavaLocalVariableTableEntry
    44 Object subclass:#JavaLocalVariableTableEntry
    18 	instanceVariableNames:'startPC length name signature slot'
    45 	instanceVariableNames:'startPC length name signature slot'
    19 	classVariableNames:''
    46 	classVariableNames:''
    23 
    50 
    24 !JavaLocalVariableTableEntry class methodsFor:'documentation'!
    51 !JavaLocalVariableTableEntry class methodsFor:'documentation'!
    25 
    52 
    26 copyright
    53 copyright
    27 "
    54 "
    28  COPYRIGHT (c) 1997 by eXept Software AG
    55  COPYRIGHT (c) 1996-2011 by Claus Gittinger
    29               All Rights Reserved
    56  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
       
    57                             SWING Research Group, Czech Technical University in Prague
       
    58 
       
    59  Parts of the code written by Claus Gittinger are under following
       
    60  license:
    30 
    61 
    31  This software is furnished under a license and may be used
    62  This software is furnished under a license and may be used
    32  only in accordance with the terms of that license and with the
    63  only in accordance with the terms of that license and with the
    33  inclusion of the above copyright notice.   This software may not
    64  inclusion of the above copyright notice.   This software may not
    34  be provided or otherwise made available to, or used by, any
    65  be provided or otherwise made available to, or used by, any
    35  other person.  No title to or ownership of the software is
    66  other person.  No title to or ownership of the software is
    36  hereby transferred.
    67  hereby transferred.
       
    68 
       
    69  Parts of the code written at SWING Reasearch Group [1] are MIT licensed:
       
    70 
       
    71  Permission is hereby granted, free of charge, to any person
       
    72  obtaining a copy of this software and associated documentation
       
    73  files (the 'Software'), to deal in the Software without
       
    74  restriction, including without limitation the rights to use,
       
    75  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    76  copies of the Software, and to permit persons to whom the
       
    77  Software is furnished to do so, subject to the following
       
    78  conditions:
       
    79 
       
    80  The above copyright notice and this permission notice shall be
       
    81  included in all copies or substantial portions of the Software.
       
    82 
       
    83  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    84  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    85  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    86  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    87  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    88  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    89  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    90  OTHER DEALINGS IN THE SOFTWARE.
       
    91 
       
    92  [1] Code written at SWING Research Group contain a signature
       
    93      of one of the above copright owners.
       
    94 
    37 "
    95 "
    38 
       
    39 
       
    40 ! !
    96 ! !
    41 
    97 
    42 !JavaLocalVariableTableEntry methodsFor:'accessing'!
    98 !JavaLocalVariableTableEntry methodsFor:'accessing'!
    43 
    99 
    44 endPC
   100 endPC
    73       , ' from: ' , startPC printString
   129       , ' from: ' , startPC printString
    74       , ' to:' , (startPC+length-1) printString
   130       , ' to:' , (startPC+length-1) printString
    75       , ']'
   131       , ']'
    76 
   132 
    77     "Created: / 8.1.1998 / 18:32:30 / cg"
   133     "Created: / 8.1.1998 / 18:32:30 / cg"
       
   134 !
       
   135 
       
   136 printOn: aStream
       
   137 
       
   138     aStream nextPutAll: self displayString
       
   139 
       
   140     "Created: / 23-11-2010 / 19:45:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    78 ! !
   141 ! !
    79 
   142 
    80 !JavaLocalVariableTableEntry methodsFor:'private accessing'!
   143 !JavaLocalVariableTableEntry methodsFor:'private accessing'!
    81 
   144 
    82 startPC:start_pc length:l name:nm signature:sig slot:sl
   145 startPC:start_pc length:l name:nm signature:sig slot:sl
    90 ! !
   153 ! !
    91 
   154 
    92 !JavaLocalVariableTableEntry class methodsFor:'documentation'!
   155 !JavaLocalVariableTableEntry class methodsFor:'documentation'!
    93 
   156 
    94 version
   157 version
    95     ^ '$Header: /cvs/stx/stx/libjava/JavaLocalVariableTableEntry.st,v 1.7 2002-11-22 20:12:57 cg Exp $'
   158     ^ '$Id: JavaLocalVariableTableEntry.st,v 1.8 2011-08-18 18:42:48 vrany Exp $'
       
   159 !
       
   160 
       
   161 version_SVN
       
   162     ^ '$Id: JavaLocalVariableTableEntry.st,v 1.8 2011-08-18 18:42:48 vrany Exp $'
    96 ! !
   163 ! !