stx_libjava.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 12 Nov 2013 01:31:21 +0000
branchdevelopment
changeset 2914 1f4c3054998c
parent 2909 2fae1fd966be
child 2915 ac252847cc04
permissions -rw-r--r--
Native java.lang.Object#clone() refactored to use ACX_CLOENABLE flag. This flag is used in optimized VM clone(). If not set, the VM falls back to smalltalk-implemented native.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     1
"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     2
 COPYRIGHT (c) 1996-2011 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: 2344
diff changeset
     3
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
     4
 New code and modifications done at SWING Research Group [1]:
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     5
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
     6
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
     7
                            SWING Research Group, Czech Technical University in Prague
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     8
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     9
 This software is furnished under a license and may be used
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    10
 only in accordance with the terms of that license and with the
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    11
 inclusion of the above copyright notice.   This software may not
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    12
 be provided or otherwise made available to, or used by, any
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    13
 other person.  No title to or ownership of the software is
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    14
 hereby transferred.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    15
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
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: 2344
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: 2344
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: 2344
diff changeset
    19
     as of 1.9.2010
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    20
"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    21
"{ Package: 'stx:libjava' }"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    22
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    23
LibraryDefinition subclass:#stx_libjava
2458
5ec04246cd51 class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 2448
diff changeset
    24
	instanceVariableNames:''
5ec04246cd51 class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 2448
diff changeset
    25
	classVariableNames:''
5ec04246cd51 class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 2448
diff changeset
    26
	poolDictionaries:''
5ec04246cd51 class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 2448
diff changeset
    27
	category:'* Projects & Packages *'
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    28
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    29
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    30
!stx_libjava class methodsFor:'documentation'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    31
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    32
copyright
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    33
"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    34
 COPYRIGHT (c) 1996-2011 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: 2344
diff changeset
    35
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
    36
 New code and modifications done at SWING Research Group [1]:
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    37
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
    38
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
    39
                            SWING Research Group, Czech Technical University in Prague
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    40
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    41
 This software is furnished under a license and may be used
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    42
 only in accordance with the terms of that license and with the
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    43
 inclusion of the above copyright notice.   This software may not
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    44
 be provided or otherwise made available to, or used by, any
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    45
 other person.  No title to or ownership of the software is
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    46
 hereby transferred.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
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: 2344
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: 2344
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: 2344
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: 2344
diff changeset
    51
     as of 1.9.2010
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    52
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    53
"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    54
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    55
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    56
!stx_libjava class methodsFor:'accessing'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    57
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    58
svnRepositoryUrl
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    59
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    60
    ^'https://jv@swing.fit.cvut.cz/svn/stx/libjava/branches/jk_new_structure/src'
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    61
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    62
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    63
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    64
svnRepositoryUrlBase
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    65
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    66
    | url |
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    67
    url := stx_libjava svnRepositoryUrl.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    68
    url ifNil:[url := 'https://swing.fit.cvut.cz/svn/stx/libjava/trunk/src'].
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    69
    (url endsWith: 'src') ifTrue:[url := url copyTo: url size - 4].
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    70
    ^url
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    71
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    72
    "Created: / 08-04-2011 / 16:57:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    73
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    74
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    75
!stx_libjava class methodsFor:'accessing - tests'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    76
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
    77
excludedFromTestSuite  
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    78
    "List of testcases and/or tests excluded from testsuite.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    79
     Entries maybe ClassName or #(ClassName testName)
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    80
    "
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    81
    ^ #(
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
    82
        LookupTests
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    83
    )
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    84
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    85
    "Created: / 03-06-2011 / 17:04:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    86
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    87
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    88
testSuite
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    89
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    90
    | suite javaTestCases stTests |
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    91
    suite := super testSuite.
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
    92
    stTests := suite tests.
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    93
    suite := TestSuite new.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    94
    suite name: self package.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    95
    JavaTestsLoader load.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    96
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    97
    javaTestCases := OrderedCollection new.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    98
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    99
    Java allClassesDo:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   100
        [:jclass|
2841
6fa1bcf9c997 JavaClass>>#name vs. #binaryName refactoring
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2807
diff changeset
   101
        (jclass binaryName ~~ #'stx/libjava/tests/JUnit3Tests'
6fa1bcf9c997 JavaClass>>#name vs. #binaryName refactoring
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2807
diff changeset
   102
            and:[jclass binaryName ~~  #'stx/libjava/tests/JUnit4Tests'
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   103
                and:[jclass isTestCaseLike]])
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   104
                    ifTrue:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   105
                        [ | tc |
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   106
                        tc := jclass asTestCase.
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   107
                        tc isAbstract ifFalse:[javaTestCases add:tc ]]].
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   108
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   109
    javaTestCases do:
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   110
                [:each | 
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   111
                suite addTests:each buildSuite tests ].
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   112
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   113
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   114
    suite tests addAll: stTests.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   115
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   116
    suite tests withIndexDo:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   117
        [:t :i|
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   118
        Stdout nextPutAll: i printString; space; nextPutAll: t printString; cr].
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   119
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   120
    Java dumpConfigOn: Stdout.
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   121
    ^suite
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   122
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   123
    "
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   124
        stx_libjava testSuite
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   125
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   126
    "
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   127
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   128
    "Created: / 07-05-2011 / 19:58:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   129
    "Modified: / 04-06-2011 / 17:23:05 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   130
    "Modified: / 08-02-2013 / 10:24:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   131
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   132
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   133
testSuiteWithoutJavaTests
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   134
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   135
    ^super testSuite.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   136
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   137
    "Created: / 21-06-2011 / 17:33:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   138
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   139
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   140
!stx_libjava class methodsFor:'description'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   141
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   142
excludedFromPreRequisites
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   143
    "list all packages which should be ignored in the automatic
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   144
     preRequisites scan. See #preRequisites for more."
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   145
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   146
    ^ #(
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   147
        #'stx:libjava/experiments'
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   148
        #'stx:libjava/tools'
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   149
    )
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   150
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   151
    "Modified: / 06-09-2013 / 00:09:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   152
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   153
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   154
mandatoryPreRequisites
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   155
    "list all required mandatory packages.
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   156
     Packages are mandatory, if they contain superclasses of the package's classes
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   157
     or classes which are extended by this package.
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   158
     This list can be maintained manually or (better) generated and
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   159
     updated by scanning the superclass hierarchies
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   160
     (the browser has a menu function for that)"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   161
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   162
    ^ #(
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   163
        #'stx:goodies/sunit'    "TestAsserter - superclass of JUnitTestCaseProxy "
2542
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   164
        #'stx:libbasic'    "AbstractNumberVector - extended "
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   165
        #'stx:libbasic2'    "BitArray - extended "
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   166
        #'stx:libbasic3'    "WrappedMethod - extended "
2542
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   167
        #'stx:libview'    "DeviceGraphicsContext - superclass of JavaEmbeddedFrameView "
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   168
    )
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   169
!
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   170
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   171
referencedPreRequisites
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   172
    "list all packages containing classes referenced by the packages's members.
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   173
     This list can be maintained manually or (better) generated and
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   174
     updated by looking for global variable accesses
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   175
     (the browser has a menu function for that)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   176
     However, often too much is found, and you may want to explicitely
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   177
     exclude individual packages in the #excludedFromPreRequisites method."
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   178
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   179
    ^ #(
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   180
        #'stx:libcomp'    "BlockNode - referenced by JavaNativeMethod>>numberOfArgs: "
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   181
        #'stx:libhtml'    "URL - referenced by JavaEmbeddedFrameView>>setupAppletFrameIn:initializeJava: "
2542
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   182
        #'stx:libtool'    "DebugView - referenced by Java class>>flushClasses "
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   183
        #'stx:libview2'    "GIFReader - referenced by JavaNativeMethodImpl_OpenJDK6 class>>_GifImageDecoder_parseImage: "
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   184
        #'stx:libwidg'    "Button - referenced by JavaNativeMethodImpl_OpenJDK6 class>>_WButtonPeer_create: "
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   185
        #'stx:libwidg2'    "CheckBox - referenced by JavaNativeMethodImpl_OpenJDK6 class>>_WCheckboxPeer_create: "
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   186
    )
2542
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   187
!
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   188
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   189
subProjects
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   190
    "list packages which are known as subprojects.
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   191
     The generated makefile will enter those and make there as well.
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   192
     However: they are not forced to be loaded when a package is loaded;
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   193
     for those, redefine requiredPrerequisites"
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   194
2734
f56049613ff3 Initial support for live code checker / lint.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2732
diff changeset
   195
    ^ #(
2914
1f4c3054998c Native java.lang.Object#clone() refactored to use ACX_CLOENABLE flag.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2909
diff changeset
   196
        #'stx:libjava/experiments'
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   197
        #'stx:libjava/libs'
2896
edaa0c80646e fix JavaBehavior>>hasMultipleVersions
Marcel Hlopko <marcel.hlopko@gmail.com>
parents: 2872
diff changeset
   198
        #'stx:libjava/tools'
2542
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   199
    )
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   200
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   201
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   202
!stx_libjava class methodsFor:'description - compilation'!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   203
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   204
additionalLinkLibraries_bc_dot_mak
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   205
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   206
    ^ '$(ZLIB_DIR)\$(ZLIB) support\fdlibm\libfdm.lib'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   207
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   208
    "Modified: / 07-09-2011 / 17:04:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   209
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   210
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   211
additionalLinkLibraries_make_dot_proto
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   212
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   213
    ^ '$(ZLIB_LD_ARG) support/fdlibm/libfdm.a'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   214
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   215
    "Modified: / 07-09-2011 / 17:01:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   216
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   217
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   218
additionalRules_bc_dot_mak
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   219
    ^ '
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   220
java: ant
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   221
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   222
ant:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   223
        ant -f java\build.xml
2418
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   224
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   225
antIfPossible:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   226
        -ant -f java\build.xml
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   227
2424
dfc1598bea78 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   228
full::  ant
2418
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   229
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   230
$(ZLIB):
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   231
        cd $(ZLIB_DIR)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   232
        $(MAKE) $(MAKE_ZLIB_ARG) $(ZLIB)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   233
        cd ..\..\libjava
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   234
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   235
$(BZ2LIB):
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   236
        cd $(BZ2LIB_DIR)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   237
        $(MAKE) $(MAKE_BZ2LIB_ARG) bz2.lib
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   238
        cd ..\..\libjava
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   239
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   240
support\fdlibm\libfdm.lib:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   241
        cd support\fdlibm
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   242
        $(MAKE) -f Makefile.bcc
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   243
        cd ..\..
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   244
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   245
'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   246
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   247
    "Modified: / 26-02-2013 / 16:51:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   248
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   249
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   250
additionalRules_make_dot_proto
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   251
    ^ '
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   252
java: ant
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   253
2412
1a520df90b96 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   254
ant:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   255
        ant -f java/build.xml
2418
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   256
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   257
antIfPossible:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   258
        -ant -f java/build.xml
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   259
2424
dfc1598bea78 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   260
full::  ant
2418
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   261
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   262
zlib:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   263
        cd $(ZLIB_DIR); $(MAKE) $(MAKE_ZLIB_ARG)
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   264
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   265
support/fdlibm/libfdm.a:
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   266
        $(MAKE) CCCONFOPT="$(CCCONFOPT)" -C support/fdlibm
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   267
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   268
'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   269
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   270
    "Modified: / 26-02-2013 / 16:51:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   271
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   272
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   273
additionalTargets_bc_dot_mak
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   274
2418
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   275
    ^ '$(ZLIB) support\fdlibm\libfdm.lib antIfPossible'
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   276
2396
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   277
    "Modified: / 15-11-2012 / 23:20:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   278
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   279
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   280
additionalTargets_make_dot_proto
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   281
2418
0bc0066cfa66 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
   282
    ^ ' zlib support/fdlibm/libfdm.a antIfPossible'
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   283
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   284
    "Created: / 05-09-2006 / 16:05:12 / cg"
2396
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   285
    "Modified: / 15-11-2012 / 23:20:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   286
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   287
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   288
localIncludes
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   289
    ^ '-I$(ZLIB_DIR) -Isupport/fdlibm'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   290
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   291
    "Created: / 06-09-2006 / 18:18:15 / cg"
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   292
    "Modified: / 07-09-2011 / 17:03:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   293
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   294
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   295
stcOptimizationOptions
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   296
    ^ '+optinline +optinline2'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   297
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   298
    "Created: / 23-08-2006 / 11:06:17 / cg"
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   299
! !
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   300
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   301
!stx_libjava class methodsFor:'description - contents'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   302
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   303
classNamesAndAttributes
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   304
    "lists the classes which are to be included in the project.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   305
     Each entry in the list may be: a single class-name (symbol),
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   306
     or an array-literal consisting of class name and attributes.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   307
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   308
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   309
    ^ #(
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   310
        "<className> or (<className> attributes...) in load order"
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   311
        GroovyCompiler
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   312
        GroovyEvaluator
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   313
        GroovyLanguage
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   314
        GroovySourceFileWriter
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   315
        JavaAnnotation
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   316
        JavaAnnotationContainer
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   317
        JavaAnnotationDefault
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   318
        JavaAnnotationDictionary
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   319
        JavaAnnotationValue
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   320
        (JavaAntProjectResource autoload)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   321
        JavaArray
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   322
        JavaByte
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   323
        JavaByteCodeProcessor
2734
f56049613ff3 Initial support for live code checker / lint.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2732
diff changeset
   324
        (JavaByteCodeProcessorTests autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   325
        JavaClassAccessor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   326
        (JavaClassLoadingTests autoload)
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   327
        JavaClassQuery
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   328
        JavaClassReloader
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   329
        JavaCodeLibraryOrBundle
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   330
        #'JavaCompiler_Eclipse'
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   331
        JavaConstantPool
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   332
        JavaConstants
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   333
        JavaContext
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   334
        JavaDecompiler
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   335
        JavaDescriptor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   336
        JavaError
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   337
        JavaExceptionTable
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   338
        (JavaExceptionTests autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   339
        JavaField
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   340
        JavaFinalizationRegistry
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   341
        (JavaFreshlyInitializedResource autoload)
2866
d92f88db7514 Improved JavaClassReader to read InnerClasses and MissingTypes attributes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2865
diff changeset
   342
        JavaInnerClasses
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   343
        (JavaJUnitTests autoload)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   344
        JavaLanguage
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   345
        JavaLibraries
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   346
        (JavaLibrariesResource autoload)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   347
        JavaLocalVariableTable
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   348
        JavaLocalVariableTableEntry
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   349
        JavaLookup
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   350
        (JavaLookupResolutionAlgorithmTests autoload)
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   351
        (JavaLookupTests autoload)
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   352
        (JavaLookupTestsResource autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   353
        JavaMathSupport
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   354
        JavaMetaclass
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   355
        JavaMirror
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   356
        JavaMonitor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   357
        (JavaMonitorsTests autoload)
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   358
        JavaNameAndType2
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   359
        JavaNativeMemory
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   360
        (JavaNativeMemoryTests autoload)
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   361
        JavaNioSupport
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   362
        JavaObject
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   363
        JavaObjectDictionary
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   364
        JavaPackage
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   365
        JavaPopUpView
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   366
        JavaProcess
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   367
        JavaRef2
2734
f56049613ff3 Initial support for live code checker / lint.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2732
diff changeset
   368
        (JavaRefsAndConstantPoolTestCase autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   369
        JavaResolver
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   370
        JavaShort
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   371
        JavaSlotIndexCache
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   372
        JavaSocket
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   373
        JavaSourceCodeCache
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   374
        JavaSourceFileWriter
2734
f56049613ff3 Initial support for live code checker / lint.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2732
diff changeset
   375
        (JavaTestCaseProxy autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   376
        JavaTestsLoader
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   377
        JavaTopView
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   378
        (JavaUTF8Tests autoload)
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   379
        JavaUnresolvedCompilationError
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   380
        JavaUnresolvedConstant
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   381
        JavaUtilities
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   382
        JavaVMData
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   383
        JavaView
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   384
        JavaZipSupport
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   385
        ProxyMethod
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   386
        ProxyMethodCompiler
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   387
        ProxyMethodNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   388
        SmalltalkAppletContext
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   389
        SmalltalkAppletStub
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   390
        #'stx_libjava'
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   391
        GroovyMetaclass
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   392
        (JUnitTestCaseProxy autoload)
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   393
        Java
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   394
        JavaAnnotationArrayValue
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   395
        JavaAnnotationClassValue
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   396
        JavaAnnotationEnumValue
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   397
        JavaAnnotationNestedAnnotationValue
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   398
        JavaAnnotationPrimitiveValue
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   399
        JavaBehavior
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   400
        JavaByteCodeDisassembler
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   401
        (JavaByteCodeDisassemblerTests autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   402
        JavaByteCodeEnumerator
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   403
        JavaByteCodeProcessorAdapter
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   404
        JavaClassAnnotationContainer
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   405
        JavaClassContentRef2
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   406
        JavaClassReader
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   407
        (JavaClassReaderTests autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   408
        JavaClassRef2
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   409
        (JavaClassRefTests autoload)
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   410
        JavaClassRegistry
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   411
        JavaCodeBundle
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   412
        JavaCodeLibrary
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   413
        JavaEmbeddedFrameView
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   414
        JavaFieldAnnotationContainer
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   415
        JavaFieldDescriptor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   416
        JavaFieldDescriptorWithUnionType
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   417
        (JavaFieldRefTests autoload)
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   418
        (JavaInitializedResource autoload)
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   419
        (JavaInterfaceMethodRefTests autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   420
        JavaInvalidRefError
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   421
        JavaMethod
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   422
        JavaMethodAnnotationContainer
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   423
        JavaMethodDescriptor
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   424
        (JavaMethodRefTests autoload)
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   425
        #'JavaNativeMethodImpl_OpenJDK6'
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   426
        (JavaRefMock autoload)
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   427
        JavaRelease
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   428
        (JavaRuntimeConstantPoolTests autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   429
        JavaStringRef2
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   430
        (JavaTestsResource autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   431
        JavaUnhandledExceptionError
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   432
        JavaUnresolvedClassConstant
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   433
        JavaUnresolvedStringConstant
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   434
        JavaVM
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   435
        ProxyMethodConditionNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   436
        ProxyMethodGuardNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   437
        ProxyMethodInvocationNode
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   438
        ProxyMethodJavaFieldAccessor
2908
064418faa2e3 Another pass over Mauve tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2905
diff changeset
   439
        (TestletTestCaseProxy autoload)
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   440
        JavaByteCodePreresolver
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   441
        JavaClass
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   442
        JavaClassPathBundle
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   443
        JavaFieldRef2
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   444
        JavaMethodAnalyzer
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   445
        JavaMethodRef2
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   446
        JavaMethodWithException
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   447
        #'JavaNativeMethodImpl_OpenJDK7'
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   448
        #'JavaNativeMethodImpl_SunJDK6'
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   449
        ProxyMethodAndNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   450
        ProxyMethodBlockInvocationNode
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   451
        ProxyMethodJavaFieldGetter
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   452
        ProxyMethodJavaFieldSetter
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   453
        ProxyMethodMethodInvocationNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   454
        ProxyMethodTypeCheckNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   455
        GroovyClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   456
        JavaInterfaceMethodRef2
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   457
        JavaMethodWithHandler
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   458
        #'JavaNativeMethodImpl_SunJDK7'
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   459
        ProxyMethodJavaMethodInvocationNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   460
        ProxyMethodJavaTypeCheckNode
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   461
        JavaNativeMethod
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   462
    )
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   463
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   464
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   465
extensionMethodNames
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   466
    "lists the extension methods which are to be included in the project.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   467
     Entries are 2-element array literals, consisting of class-name and selector."
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   468
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   469
    ^ #(
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   470
        Behavior isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   471
        BooleanArray isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   472
        CharacterArray asDottedJavaClassName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   473
        CharacterArray asJavaComponentClassName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   474
        CharacterArray asNiceJavaClassName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   475
        CharacterArray asSTXInternalJavaClassName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   476
        CharacterArray asSlashedJavaClassName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   477
        CharacterArray isJavaArrayDescriptor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   478
        CharacterArray isJavaPrimitiveTypeDescriptor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   479
        Delay waitWithState:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   480
        Object isGroovyClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   481
        Object isJavaArray
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   482
        Object isJavaNameAndType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   483
        Object isJavaPackage
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   484
        Object isJavaRef
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   485
        Object isJavaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   486
        Object javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   487
        Object javaUnwrap:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   488
        Object javaUnwrapFrom:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   489
        Object javaWrap:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   490
        Process clearInterrupted
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   491
        Process isInterrupted
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   492
        Process isSleeping
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   493
        Process isWaiting
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   494
        Process javaInterrupt
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   495
        Process setInterrupted
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   496
        Set #'java__contains:'
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   497
        SmallInteger javaUnwrapFrom:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   498
        String asArrayOfSubstringsSeparatedBy:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   499
        WrappedMethod descriptor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   500
        WrappedMethod isAbstract
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   501
        ZipArchive nextBytes:of:startingAt:into:startingAt:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   502
        'Boolean class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   503
        'Boolean class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   504
        'Boolean class' javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   505
        'Boolean class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   506
        'Boolean class' javaUnbox:onError:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   507
        'Boolean class' javaUnwrap:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   508
        'Boolean class' javaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   509
        'BooleanArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   510
        'BooleanArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   511
        'BooleanArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   512
        'BooleanArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   513
        'BooleanArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   514
        'BooleanArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   515
        'ByteArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   516
        'ByteArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   517
        'ByteArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   518
        'ByteArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   519
        'ByteArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   520
        'ByteArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   521
        'Character class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   522
        'Character class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   523
        'Character class' javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   524
        'Character class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   525
        'Character class' javaUnbox:onError:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   526
        'Character class' javaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   527
        'CharacterArray class' decodeFromJavaUTF8:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   528
        'CharacterArray class' fromJavaUTF8Bytes:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   529
        'CharacterArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   530
        'CharacterArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   531
        'CharacterArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   532
        'ConfigurableFeatures class' hasJavaSupport
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   533
        'DoubleArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   534
        'DoubleArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   535
        'DoubleArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   536
        'DoubleArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   537
        'DoubleArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   538
        'DoubleArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   539
        'Float class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   540
        'Float class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   541
        'Float class' javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   542
        'Float class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   543
        'Float class' javaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   544
        'FloatArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   545
        'FloatArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   546
        'FloatArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   547
        'FloatArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   548
        'FloatArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   549
        'FloatArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   550
        'Integer class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   551
        'Integer class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   552
        'Integer class' javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   553
        'Integer class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   554
        'Integer class' javaUnbox:onError:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   555
        'Integer class' javaUnbox:onError:min:max:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   556
        'Integer class' javaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   557
        'LargeInteger class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   558
        'LargeInteger class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   559
        'LargeInteger class' javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   560
        'LargeInteger class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   561
        'LargeInteger class' javaUnbox:onError:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   562
        'LargeInteger class' javaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   563
        'Object class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   564
        'Object class' isJavaClassType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   565
        Behavior isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   566
        'Object class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   567
        'Object class' isJavaType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   568
        'ProjectDefinition class' javaClassPath
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   569
        'ProjectDefinition class' javaSourcePath
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   570
        'ShortFloat class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   571
        'ShortFloat class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   572
        'ShortFloat class' javaBox:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   573
        'ShortFloat class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   574
        'ShortFloat class' javaWrapperClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   575
        'SignedIntegerArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   576
        'SignedIntegerArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   577
        'SignedIntegerArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   578
        'SignedIntegerArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   579
        'SignedIntegerArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   580
        'SignedLongIntegerArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   581
        'SignedLongIntegerArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   582
        'SignedLongIntegerArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   583
        'SignedLongIntegerArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   584
        'SignedLongIntegerArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   585
        'SignedLongIntegerArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   586
        'SignedWordArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   587
        'SignedWordArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   588
        'SignedWordArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   589
        'SignedWordArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   590
        'UndefinedObject class' isJavaPrimitiveType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   591
        'UndefinedObject class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   592
        'WordArray class' isInterface
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   593
        'WordArray class' isJavaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   594
        'WordArray class' isJavaReferenceType
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   595
        'WordArray class' javaArrayClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   596
        'WordArray class' javaComponentClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   597
        'WordArray class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   598
        'Boolean class' javaWrap:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   599
        ProgrammingLanguage isGroovy
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   600
        ProgrammingLanguage isJavaLike
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   601
        UserPreferences javaRelease
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   602
        UserPreferences javaReleaseSelector
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   603
        UserPreferences javaReleaseSelector:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   604
        Class javaMirror
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   605
        Class javaMirrorClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   606
        ExecutableFunction isJavaConstructor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   607
        Process isParked
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   608
        Semaphore parkWithTimeoutMs:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   609
        Object isSocket
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   610
        Socket isSocket
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   611
        Socket reOpenIfPossible
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   612
        Method isStatic
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   613
        Class classLoader
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   614
        Method isAbstract
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   615
        Method javaClass
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   616
        Class lookupMethodByNameAndType:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   617
        Object getJavaLockWord
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   618
        Object getJavaMonitor
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   619
        Object javaWrapRequired
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   620
        'Boolean class' javaWrapRequired
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   621
        CharacterArray withoutSuffix:
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   622
        ExecutableFunction isProxyMethod
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   623
        'ProjectDefinition class' javaBundle
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   624
        'String class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   625
        'Unicode16String class' javaName
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   626
        Context arg1Index
2542
aa1de74e5d2e automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2458
diff changeset
   627
        'Float class' javaUnbox:onError:
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   628
        'ShortFloat class' javaUnbox:onError:
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   629
    )
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   630
! !
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   631
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   632
!stx_libjava class methodsFor:'description - java'!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   633
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   634
javaBundle
2909
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   635
    | bundle jdkBundle |
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   636
2909
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   637
    bundle := JavaCodeBundle standardPackageBundleFor: self package.
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   638
    jdkBundle := Java release jdkBundle.
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   639
    jdkBundle notNil ifTrue:[
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   640
        bundle add: jdkBundle.
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   641
    ].
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   642
    ^ bundle.
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   643
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   644
    "
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   645
        self javaBundle
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   646
    "
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   647
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   648
    "Created: / 15-01-2013 / 17:35:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2909
2fae1fd966be Added JavaRelease>>system which uses default system Java installation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2908
diff changeset
   649
    "Modified (comment): / 11-11-2013 / 15:34:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   650
!
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   651
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   652
javaClassPath
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   653
    <resource: #obsolete>
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   654
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   655
    "Defines paths to Java .class files (for packages that
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   656
     contains Java code"    
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   657
    ^#()
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   658
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   659
    "Created: / 15-01-2013 / 18:04:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   660
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   661
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   662
!stx_libjava class methodsFor:'description - project information'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   663
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   664
applicationIconFileName
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   665
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   666
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   667
    ^ nil
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   668
    "/ ^ self applicationName
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   669
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   670
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   671
companyName
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   672
    "Return a companyname which will appear in <lib>.rc"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   673
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   674
    ^ 'eXept Software AG & SWING Research Group'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   675
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   676
    "Modified: / 15-11-2012 / 23:51:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   677
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   678
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   679
description
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   680
    "Description string which will appear in vc.def / bc.def"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   681
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   682
    ^ 'Java support for Smalltalk/X'
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   683
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   684
    "Modified: / 15-11-2012 / 23:51:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   685
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   686
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   687
legalCopyright
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   688
    "Copyright string which will appear in <lib>.rc"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   689
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   690
    ^ 'Copyright Claus Gittinger 1988-2011\nCopyright eXept Software AG 1998-2011\nCopyright Jan Vrany, Jan Kurs and Marcel Hlopko\n          SWING Research Group, Czech Technical University In Prague'
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   691
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   692
    "Modified: / 15-11-2012 / 23:51:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   693
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   694
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   695
productName
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   696
    "Return product name which will appear in <lib>.rc"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   697
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   698
    ^ 'Smalltalk/X'
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   699
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   700
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   701
!stx_libjava class methodsFor:'description - svn'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   702
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   703
svnRepositoryUrlString
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   704
    "Return a SVN repository URL of myself.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   705
     (Generated since 2011-04-08)
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   706
     Do not make the string shorter!!!!!! We have to use fixed-length keyword!!!!!!
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   707
    "        
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   708
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   709
    ^ '$URL::                                                                                                                        $'
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   710
!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   711
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   712
svnRevisionNr
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   713
    "Return a SVN revision number of myself.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   714
     This number is updated after a commit"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   715
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   716
    ^ "$SVN-Revision:"'2242            '"$"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   717
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   718
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   719
!stx_libjava class methodsFor:'file generation'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   720
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   721
basicFileNamesToGenerat
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   722
    "answer a dictionary (filename -> generator method) with all the files, that have to be generated for this
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   723
     package"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   724
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   725
    |dict|
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   726
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   727
    dict := super basicFileNamesToGenerate.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   728
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   729
    dict 
2448
d7ecc37e95a6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2445
diff changeset
   730
        at:'builder/package.deps.rake' put: #'generate_package_dot_deps_dot_rake'.
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   731
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   732
    ^ dict.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   733
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   734
    "Created: / 11-03-2011 / 09:32:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   735
! !
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   736
2396
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   737
!stx_libjava class methodsFor:'others'!
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   738
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   739
version_HG
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   740
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2542
diff changeset
   741
    ^ '$Changeset: <not expanded> $'
2396
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   742
! !
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2363
diff changeset
   743
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   744
!stx_libjava class methodsFor:'documentation'!
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   745
2412
1a520df90b96 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   746
version
2689
83b4799060b5 subprojects (accidently added) removed....
Michael Beyl <mb@exept.de>
parents: 2678
diff changeset
   747
    ^ '$Header: /cvs/stx/stx/libjava/stx_libjava.st,v 1.19 2013-09-09 10:59:06 mb Exp $'
2412
1a520df90b96 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   748
!
1a520df90b96 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   749
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2344
diff changeset
   750
version_CVS
2689
83b4799060b5 subprojects (accidently added) removed....
Michael Beyl <mb@exept.de>
parents: 2678
diff changeset
   751
    ^ '$Header: /cvs/stx/stx/libjava/stx_libjava.st,v 1.19 2013-09-09 10:59:06 mb Exp $'
2251
81478ca24a5b fixed: #version_SVN ($ to §)
Claus Gittinger <cg@exept.de>
parents: 2152
diff changeset
   752
!
81478ca24a5b fixed: #version_SVN ($ to §)
Claus Gittinger <cg@exept.de>
parents: 2152
diff changeset
   753
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
   754
version_SVN
2689
83b4799060b5 subprojects (accidently added) removed....
Michael Beyl <mb@exept.de>
parents: 2678
diff changeset
   755
    ^ '$Id: stx_libjava.st,v 1.19 2013-09-09 10:59:06 mb Exp $'
2152
1cbdfbcc685c Jan's version
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
   756
! !
2458
5ec04246cd51 class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 2448
diff changeset
   757