src/JavaEmbeddedFrameView.st
branchjk_new_structure
changeset 1152 040cba55a7d2
parent 1033 a31de6a4cfa4
child 1155 d6f6d5fc0343
equal deleted inserted replaced
1151:2744e1f793e4 1152:040cba55a7d2
     1 "
     1 "
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
       
     3 
       
     4  New code and modification done at SWING Research Group [1]:
       
     5 
     3  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
     4                             SWING Research Group, Czech Technical University in Prague
     7                             SWING Research Group, Czech Technical University in Prague
     5 
     8 
     6  Parts of the code written by Claus Gittinger are under following
     9  Parts of the code written by Claus Gittinger are under following
     7  license:
    10  license:
    11  inclusion of the above copyright notice.   This software may not
    14  inclusion of the above copyright notice.   This software may not
    12  be provided or otherwise made available to, or used by, any
    15  be provided or otherwise made available to, or used by, any
    13  other person.  No title to or ownership of the software is
    16  other person.  No title to or ownership of the software is
    14  hereby transferred.
    17  hereby transferred.
    15 
    18 
    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
    19  [1] Code written at SWING Research Group contain a signature
    40      of one of the above copright owners.
    20      of one of the above copright owners. For exact set of such code
       
    21      see the differences between this version and version stx:lib
       
    22      as of 1.9.2010
    41 "
    23 "
    42 "{ Package: 'stx:libjava' }"
    24 "{ Package: 'stx:libjava' }"
    43 
    25 
    44 JavaView subclass:#JavaEmbeddedFrameView
    26 JavaView subclass:#JavaEmbeddedFrameView
    45 	instanceVariableNames:'codeURL codeBaseURL documentURL archiveURL parameterDictionary
    27 	instanceVariableNames:'codeURL codeBaseURL documentURL archiveURL parameterDictionary
    54 !JavaEmbeddedFrameView class methodsFor:'documentation'!
    36 !JavaEmbeddedFrameView class methodsFor:'documentation'!
    55 
    37 
    56 copyright
    38 copyright
    57 "
    39 "
    58  COPYRIGHT (c) 1996-2011 by Claus Gittinger
    40  COPYRIGHT (c) 1996-2011 by Claus Gittinger
       
    41 
       
    42  New code and modification done at SWING Research Group [1]:
       
    43 
    59  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
    44  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
    60                             SWING Research Group, Czech Technical University in Prague
    45                             SWING Research Group, Czech Technical University in Prague
    61 
    46 
    62  Parts of the code written by Claus Gittinger are under following
    47  Parts of the code written by Claus Gittinger are under following
    63  license:
    48  license:
    67  inclusion of the above copyright notice.   This software may not
    52  inclusion of the above copyright notice.   This software may not
    68  be provided or otherwise made available to, or used by, any
    53  be provided or otherwise made available to, or used by, any
    69  other person.  No title to or ownership of the software is
    54  other person.  No title to or ownership of the software is
    70  hereby transferred.
    55  hereby transferred.
    71 
    56 
    72  Parts of the code written at SWING Reasearch Group [1] are MIT licensed:
       
    73 
       
    74  Permission is hereby granted, free of charge, to any person
       
    75  obtaining a copy of this software and associated documentation
       
    76  files (the 'Software'), to deal in the Software without
       
    77  restriction, including without limitation the rights to use,
       
    78  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    79  copies of the Software, and to permit persons to whom the
       
    80  Software is furnished to do so, subject to the following
       
    81  conditions:
       
    82 
       
    83  The above copyright notice and this permission notice shall be
       
    84  included in all copies or substantial portions of the Software.
       
    85 
       
    86  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    87  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    88  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    89  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    90  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    91  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    92  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    93  OTHER DEALINGS IN THE SOFTWARE.
       
    94 
       
    95  [1] Code written at SWING Research Group contain a signature
    57  [1] Code written at SWING Research Group contain a signature
    96      of one of the above copright owners.
    58      of one of the above copright owners. For exact set of such code
       
    59      see the differences between this version and version stx:lib
       
    60      as of 1.9.2010
    97 
    61 
    98 "
    62 "
    99 !
    63 !
   100 
    64 
   101 documentation
    65 documentation