JavaBuiltInClassPointerRef.st
author cg
Tue, 02 Jul 1996 18:42:36 +0000
changeset 109 31342b9d745a
parent 106 5b192c18c7d8
child 135 098936234135
permissions -rw-r--r--
checkin from browser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
106
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     1
JavaClassRef subclass:#JavaBuiltInClassPointerRef
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     2
	instanceVariableNames:''
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     3
	classVariableNames:''
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     4
	poolDictionaries:''
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     5
	category:'Java-Reader-Support'
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     6
!
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     7
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
     8
109
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
     9
!JavaBuiltInClassPointerRef methodsFor:'printing & storing'!
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    10
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    11
displayString
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    12
    ^ self class name , '(class:' , class name , ' ; name&type: ' , nameandType displayString , ')'
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    13
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    14
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    15
! !
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    16
106
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    17
!JavaBuiltInClassPointerRef methodsFor:'queries'!
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    18
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    19
isUnresolved
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    20
    ^ false
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    21
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    22
    "Created: 2.7.1996 / 17:17:39 / cg"
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    23
!
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    24
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    25
javaClass
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    26
    ^ class
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    27
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    28
    "Created: 2.7.1996 / 17:19:43 / cg"
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    29
! !
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    30
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    31
!JavaBuiltInClassPointerRef  class methodsFor:'documentation'!
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    32
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    33
version
109
31342b9d745a checkin from browser
cg
parents: 106
diff changeset
    34
    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaBuiltInClassPointerRef.st,v 1.2 1996/07/02 18:42:36 cg Exp $'
106
5b192c18c7d8 intitial checkin
cg
parents:
diff changeset
    35
! !