JavaFreshlyInitializedResource.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 25 Jan 2013 17:57:06 +0000
branchrefactoring-vmdata
changeset 2002 ef3da336a6c9
parent 1895 2d30e588124c
child 2069 75d40b7b986f
permissions -rw-r--r--
Merged ad1a490462ed and 1949478fd05e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
     1
"
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
     2
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1033
diff changeset
     3
1155
vranyj1
parents: 1152
diff changeset
     4
 New code and modifications done at SWING Research Group [1]:
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1033
diff changeset
     5
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
     6
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
     7
                            SWING Research Group, Czech Technical University in Prague
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
     8
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
     9
 This software is furnished under a license and may be used
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    10
 only in accordance with the terms of that license and with the
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    11
 inclusion of the above copyright notice.   This software may not
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    12
 be provided or otherwise made available to, or used by, any
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    13
 other person.  No title to or ownership of the software is
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    14
 hereby transferred.
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    15
1155
vranyj1
parents: 1152
diff changeset
    16
 [1] Code written at SWING Research Group contains a signature
vranyj1
parents: 1152
diff changeset
    17
     of one of the above copright owners. For exact set of such code,
vranyj1
parents: 1152
diff changeset
    18
     see the differences between this version and version stx:libjava
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1033
diff changeset
    19
     as of 1.9.2010
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    20
"
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    21
"{ Package: 'stx:libjava' }"
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    22
1020
16b7733beeaf tiny little fix in test resource
hlopkmar
parents: 1019
diff changeset
    23
TestResource subclass:#JavaFreshlyInitializedResource
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    24
	instanceVariableNames:''
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    25
	classVariableNames:''
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    26
	poolDictionaries:''
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    27
	category:'Languages-Java-Tests'
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    28
!
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    29
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    30
!JavaFreshlyInitializedResource class methodsFor:'documentation'!
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    31
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    32
copyright
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    33
"
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    34
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1033
diff changeset
    35
1155
vranyj1
parents: 1152
diff changeset
    36
 New code and modifications done at SWING Research Group [1]:
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1033
diff changeset
    37
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    38
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    39
                            SWING Research Group, Czech Technical University in Prague
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    40
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    41
 This software is furnished under a license and may be used
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    42
 only in accordance with the terms of that license and with the
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    43
 inclusion of the above copyright notice.   This software may not
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    44
 be provided or otherwise made available to, or used by, any
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    45
 other person.  No title to or ownership of the software is
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    46
 hereby transferred.
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    47
1155
vranyj1
parents: 1152
diff changeset
    48
 [1] Code written at SWING Research Group contains a signature
vranyj1
parents: 1152
diff changeset
    49
     of one of the above copright owners. For exact set of such code,
vranyj1
parents: 1152
diff changeset
    50
     see the differences between this version and version stx:libjava
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 1033
diff changeset
    51
     as of 1.9.2010
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    52
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    53
"
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    54
! !
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    55
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    56
!JavaFreshlyInitializedResource methodsFor:'running'!
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    57
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    58
setUp
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1021
diff changeset
    59
    "Java flushAllJavaResources.
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    60
    Java initialize.
1033
a31de6a4cfa4 refactoringl, moved registry to JavaVM
hlopkmar
parents: 1021
diff changeset
    61
    JavaVM initializeVM."
1021
8ae6c261878a changed class loaders order, loading of primitive arrays, refactoring coming soon..
hlopkmar
parents: 1020
diff changeset
    62
    ^ super setUp.
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    63
! !
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    64
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    65
!JavaFreshlyInitializedResource class methodsFor:'documentation'!
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    66
1895
2d30e588124c added reloading tests and naive implementation
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1818
diff changeset
    67
version_HG
2d30e588124c added reloading tests and naive implementation
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1818
diff changeset
    68
2d30e588124c added reloading tests and naive implementation
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1818
diff changeset
    69
    ^ '$Changeset: <not expanded> $'
2d30e588124c added reloading tests and naive implementation
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1818
diff changeset
    70
!
2d30e588124c added reloading tests and naive implementation
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1818
diff changeset
    71
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    72
version_SVN
1895
2d30e588124c added reloading tests and naive implementation
Marcel Hlopko <marcel.hlopko@fit.cvut.cz>
parents: 1818
diff changeset
    73
    ^ '§Id§'
1019
1d993bcebed4 added few very simple tests for class loading
hlopkmar
parents:
diff changeset
    74
! !