SmalltalkAppletStub.st
author Claus Gittinger <cg@exept.de>
Wed, 26 Jun 2019 22:06:15 +0200
branchcvs_MAIN
changeset 3917 94088b7097d5
parent 3412 df11bb428463
permissions -rw-r--r--
#OTHER by cg +bracketStrings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
545
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
     1
"
3324
a58245c0e83a Updated copyright notices.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2731
diff changeset
     2
 COPYRIGHT (c) 1996-2015 by Claus Gittinger
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
     3
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
     4
 New code and modifications done at SWING Research Group [1]:
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
     5
3324
a58245c0e83a Updated copyright notices.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2731
diff changeset
     6
 COPYRIGHT (c) 2010-2015 by Jan Vrany, Jan Kurs and Marcel Hlopko
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
     7
                            SWING Research Group, Czech Technical University in Prague
545
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
     8
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
     9
 This software is furnished under a license and may be used
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    10
 only in accordance with the terms of that license and with the
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    11
 inclusion of the above copyright notice.   This software may not
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    12
 be provided or otherwise made available to, or used by, any
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    13
 other person.  No title to or ownership of the software is
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    14
 hereby transferred.
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    15
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    16
 [1] Code written at SWING Research Group contains a signature
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    17
     of one of the above copright owners. For exact set of such code,
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    18
     see the differences between this version and version stx:libjava
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    19
     as of 1.9.2010
545
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    20
"
713
75e92ac63bf1 category change
cg
parents: 545
diff changeset
    21
"{ Package: 'stx:libjava' }"
75e92ac63bf1 category change
cg
parents: 545
diff changeset
    22
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    23
Object subclass:#SmalltalkAppletStub
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    24
	instanceVariableNames:'parameter documentBase codeBase appletContext'
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    25
	classVariableNames:''
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    26
	poolDictionaries:''
713
75e92ac63bf1 category change
cg
parents: 545
diff changeset
    27
	category:'Languages-Java-Views-Support'
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    28
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    29
545
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    30
!SmalltalkAppletStub class methodsFor:'documentation'!
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    31
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    32
copyright
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    33
"
3324
a58245c0e83a Updated copyright notices.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2731
diff changeset
    34
 COPYRIGHT (c) 1996-2015 by Claus Gittinger
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    35
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    36
 New code and modifications done at SWING Research Group [1]:
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    37
3324
a58245c0e83a Updated copyright notices.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2731
diff changeset
    38
 COPYRIGHT (c) 2010-2015 by Jan Vrany, Jan Kurs and Marcel Hlopko
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    39
                            SWING Research Group, Czech Technical University in Prague
545
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    40
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    41
 This software is furnished under a license and may be used
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    42
 only in accordance with the terms of that license and with the
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    43
 inclusion of the above copyright notice.   This software may not
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    44
 be provided or otherwise made available to, or used by, any
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    45
 other person.  No title to or ownership of the software is
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    46
 hereby transferred.
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    47
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    48
 [1] Code written at SWING Research Group contains a signature
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    49
     of one of the above copright owners. For exact set of such code,
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    50
     see the differences between this version and version stx:libjava
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    51
     as of 1.9.2010
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
    52
545
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    53
"
6a841644c5e9 checkin from browser
cg
parents: 259
diff changeset
    54
! !
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    55
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    56
!SmalltalkAppletStub methodsFor:'accessing'!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    57
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    58
appletContext
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    59
    "return the value of the instance variable 'appletContext' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    60
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    61
    ^ appletContext
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    62
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    63
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    64
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    65
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    66
appletContext:something
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    67
    "set the value of the instance variable 'appletContext' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    68
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    69
    appletContext := something.
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    70
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    71
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    72
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    73
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    74
codeBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    75
    "return the value of the instance variable 'codeBase' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    76
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    77
    ^ codeBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    78
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    79
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    80
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    81
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    82
codeBase:something
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    83
    "set the value of the instance variable 'codeBase' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    84
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    85
    codeBase := something.
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    86
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    87
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    88
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    89
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    90
documentBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    91
    "return the value of the instance variable 'documentBase' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    92
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    93
    ^ documentBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    94
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    95
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    96
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    97
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    98
documentBase:something
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
    99
    "set the value of the instance variable 'documentBase' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   100
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   101
    documentBase := something.
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   102
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   103
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   104
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   105
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   106
parameter
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   107
    "return the value of the instance variable 'parameter' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   108
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   109
    ^ parameter
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   110
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   111
    "Created: 1.8.1997 / 15:56:19 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   112
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   113
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   114
parameter:something
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   115
    "set the value of the instance variable 'parameter' (automatically generated)"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   116
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   117
    parameter := something.
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   118
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   119
    "Created: 1.8.1997 / 15:56:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   120
! !
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   121
217
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   122
!SmalltalkAppletStub methodsFor:'applet actions'!
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   123
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   124
appletResize:newWidth _:newHeight
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   125
    self halt.
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   126
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   127
    "Created: 13.8.1997 / 00:18:41 / cg"
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   128
! !
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   129
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   130
!SmalltalkAppletStub methodsFor:'java accessing'!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   131
255
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   132
doesNotUnderstand:aMessage
259
1bb7cdea6c46 *** empty log message ***
cg
parents: 255
diff changeset
   133
    |selector base|
255
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   134
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   135
    selector := aMessage selector.
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   136
    selector == #'getParameter(Ljava/lang/String;)Ljava/lang/String;' ifTrue:[
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   137
        ^ self getParameter:(aMessage arguments at:1)
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   138
    ].
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   139
    selector == #'getAppletContext()Ljava/applet/AppletContext;' ifTrue:[
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   140
        ^ self getAppletContext
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   141
    ].
259
1bb7cdea6c46 *** empty log message ***
cg
parents: 255
diff changeset
   142
    selector == #'getCodeBase()Ljava/net/URL;' ifTrue:[
1bb7cdea6c46 *** empty log message ***
cg
parents: 255
diff changeset
   143
        ^ self getCodeBase.
1bb7cdea6c46 *** empty log message ***
cg
parents: 255
diff changeset
   144
    ].
255
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   145
    selector == #'appletResize(II)V' ifTrue:[
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   146
        self appletResize:(aMessage arguments at:1) _:(aMessage arguments at:2).
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   147
        ^ nil   "/ void
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   148
    ].
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   149
    ^ super doesNotUnderstand:aMessage
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   150
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   151
    "Created: / 7.1.1998 / 17:13:11 / cg"
259
1bb7cdea6c46 *** empty log message ***
cg
parents: 255
diff changeset
   152
    "Modified: / 12.1.1998 / 23:50:40 / cg"
255
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   153
!
2d8b3948a08a *** empty log message ***
cg
parents: 234
diff changeset
   154
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   155
getAppletContext
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   156
    ^ appletContext
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   157
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   158
    "Created: 1.8.1997 / 15:57:20 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   159
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   160
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   161
getCodeBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   162
    ^ codeBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   163
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   164
    "Created: 1.8.1997 / 15:57:11 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   165
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   166
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   167
getDocumentBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   168
    ^ documentBase
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   169
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   170
    "Created: 1.8.1997 / 15:57:05 / cg"
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   171
!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   172
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   173
getParameter:arg
217
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   174
    |s|
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   175
203
67af98594672 *** empty log message ***
cg
parents: 194
diff changeset
   176
    (parameter includesKey:arg) ifFalse:[
217
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   177
"/        self halt:'no parameter for: ' , arg displayString.
218
7fd29ab73152 *** empty log message ***
cg
parents: 217
diff changeset
   178
        ^ nil.
7fd29ab73152 *** empty log message ***
cg
parents: 217
diff changeset
   179
217
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   180
        s := Dialog request:('applet wants parameter for ' , (Java as_ST_String:arg)).
bf3acbe1248b *** empty log message ***
cg
parents: 203
diff changeset
   181
        ^ Java as_String:s.
203
67af98594672 *** empty log message ***
cg
parents: 194
diff changeset
   182
    ].
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   183
    ^ parameter at:arg ifAbsent:nil
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   184
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   185
    "Created: 1.8.1997 / 15:56:51 / cg"
218
7fd29ab73152 *** empty log message ***
cg
parents: 217
diff changeset
   186
    "Modified: 14.8.1997 / 01:28:56 / cg"
194
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   187
! !
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   188
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   189
!SmalltalkAppletStub class methodsFor:'documentation'!
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   190
9eacf47ecb46 intitial checkin
cg
parents:
diff changeset
   191
version
3412
df11bb428463 Merged with mercurial revision 4f3cc813be4 (8 changesets total)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3360
diff changeset
   192
    ^ '$Header: /cvs/stx/stx/libjava/SmalltalkAppletStub.st,v 1.16 2015-03-20 12:08:01 vrany Exp $'
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   193
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   194
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   195
version_CVS
3412
df11bb428463 Merged with mercurial revision 4f3cc813be4 (8 changesets total)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3360
diff changeset
   196
    ^ '$Header: /cvs/stx/stx/libjava/SmalltalkAppletStub.st,v 1.16 2015-03-20 12:08:01 vrany Exp $'
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   197
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   198
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   199
version_HG
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   200
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   201
    ^ '$Changeset: <not expanded> $'
2151
c0b6570c6f9b Jan's version
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2108
diff changeset
   202
!
c0b6570c6f9b Jan's version
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2108
diff changeset
   203
c0b6570c6f9b Jan's version
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2108
diff changeset
   204
version_SVN
2731
13f5be2bf83b Merged d87e89dd5276 and fe83a843a7bf (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2711 2678
diff changeset
   205
    ^ 'Id'
2108
ca8c4e7db2e8 category change
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
   206
! !
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2253
diff changeset
   207