JavaCodeLibraryOrBundle.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 19 Jan 2013 23:19:12 +0000
branchrefactoring-vmdata
changeset 1985 7c5a14d663ba
parent 1951 4759acf61df0
child 2004 160dfe552938
permissions -rw-r--r--
Temporary commit. JavaNativeMethod refactored to use new-style native methods. Java VM does not boot at this point.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1949
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
 New code and modifications done at SWING Research Group [1]:
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
                            SWING Research Group, Czech Technical University in Prague
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
 This software is furnished under a license and may be used
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    10
 only in accordance with the terms of that license and with the
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
 inclusion of the above copyright notice.   This software may not
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
 be provided or otherwise made available to, or used by, any
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
 other person.  No title to or ownership of the software is
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
 hereby transferred.
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
 [1] Code written at SWING Research Group contains a signature
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
     of one of the above copright owners. For exact set of such code,
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
     see the differences between this version and version stx:libjava
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
     as of 1.9.2010
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
"{ Package: 'stx:libjava' }"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
Object subclass:#JavaCodeLibraryOrBundle
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    24
	instanceVariableNames:'name'
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
	classVariableNames:''
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
	poolDictionaries:''
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
	category:'Languages-Java-Support-Libraries'
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    28
!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    29
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    30
!JavaCodeLibraryOrBundle class methodsFor:'documentation'!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    31
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    32
copyright
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    33
"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    34
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    35
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    36
 New code and modifications done at SWING Research Group [1]:
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    37
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
                            SWING Research Group, Czech Technical University in Prague
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    40
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    41
 This software is furnished under a license and may be used
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    42
 only in accordance with the terms of that license and with the
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
 inclusion of the above copyright notice.   This software may not
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    44
 be provided or otherwise made available to, or used by, any
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
 other person.  No title to or ownership of the software is
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    46
 hereby transferred.
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    47
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    48
 [1] Code written at SWING Research Group contains a signature
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    49
     of one of the above copright owners. For exact set of such code,
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
     see the differences between this version and version stx:libjava
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
     as of 1.9.2010
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    52
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    54
!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    55
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    56
documentation
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    57
"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    58
    Abstract class for JavaLibrary or JavaBundle
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    59
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    60
    [author:]
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    61
        Jan Vrany <jan.vrany@fit.cvut.cz>
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    62
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    63
    [instance variables:]
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    64
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    65
    [class variables:]
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    66
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    67
    [see also:]
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    68
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    69
"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    70
! !
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    71
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    72
!JavaCodeLibraryOrBundle methodsFor:'accessing'!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    73
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    74
name
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    75
    ^ name ? '???'
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    76
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    77
    "Modified: / 12-01-2013 / 16:06:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    78
!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    79
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    80
name:something
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    81
    name := something.
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    82
! !
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    83
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    84
!JavaCodeLibraryOrBundle methodsFor:'generating'!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    85
1951
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    86
classPath
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    87
    ^OrderedCollection streamContents:[:s|self classPathOn: s]
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    88
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    89
    "Created: / 15-01-2013 / 17:55:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    90
!
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    91
1949
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    92
classPathOn: aStream
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    93
    self subclassResponsibility
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    94
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    95
    "Created: / 12-01-2013 / 16:18:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    96
!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    97
1951
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    98
sourcePath
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
    99
    ^OrderedCollection streamContents:[:s|self sourcePathOn: s]
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   100
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   101
    "Created: / 15-01-2013 / 17:55:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   102
!
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   103
1949
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   104
sourcePathOn: aStream
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   105
    self subclassResponsibility
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   106
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   107
    "Created: / 12-01-2013 / 16:24:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   108
! !
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   109
1951
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   110
!JavaCodeLibraryOrBundle methodsFor:'printing & storing'!
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   111
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   112
printOn:aStream
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   113
    "append a printed representation if the receiver to the argument, aStream"
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   114
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   115
    super printOn:aStream.
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   116
    aStream nextPut:$(.
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   117
    name printOn: aStream.
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   118
    aStream nextPut:$).
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   119
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   120
    "Modified: / 15-01-2013 / 17:20:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   121
! !
4759acf61df0 Initial implementation of code libraries & bundles finished.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1949
diff changeset
   122
1949
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   123
!JavaCodeLibraryOrBundle class methodsFor:'documentation'!
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   124
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   125
version_HG
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   126
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   127
    ^ '$Changeset: <not expanded> $'
a83c0afe06a4 Initial implementation of Java libraries and bundles.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   128
! !