JavaNativeMethodImpl_AppleJDK8.st
author Claus Gittinger <cg@exept.de>
Sun, 23 Feb 2020 14:03:15 +0100
branchcvs_MAIN
changeset 3997 5bb44f7e1d20
parent 3843 a4f7ed2a6409
permissions -rw-r--r--
#REFACTORING by exept class: Java class changed: #dumpConfigOn:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3843
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2018 by Claus Gittinger
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
 This software is furnished under a license and may be used
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 only in accordance with the terms of that license and with the
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 inclusion of the above copyright notice.   This software may not
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 be provided or otherwise made available to, or used by, any
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 other person.  No title to or ownership of the software is
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 hereby transferred.
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
"
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"{ Package: 'stx:libjava' }"
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ NameSpace: Smalltalk }"
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
JavaNativeMethodImpl_OpenJDK8 subclass:#JavaNativeMethodImpl_AppleJDK8
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'Languages-Java-Support-Java 8'
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!JavaNativeMethodImpl_AppleJDK8 class methodsFor:'documentation'!
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 2018 by Claus Gittinger
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
! !
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!JavaNativeMethodImpl_AppleJDK8 class methodsFor:'documentation'!
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
version_CVS
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    ^ '$Header$'
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !
a4f7ed2a6409 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42