JavaUnresolvedRefConstant.st
author jv
Thu, 23 Sep 2010 13:52:13 +0000
changeset 748 da0840b7798c
parent 713 75e92ac63bf1
child 2108 ca8c4e7db2e8
permissions -rw-r--r--
Manufactured by SVN::ImportFromCVSTask to fix repository layout

"
 COPYRIGHT (c) 1997 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"



"{ Package: 'stx:libjava' }"

JavaUnresolvedConstant subclass:#JavaUnresolvedRefConstant
	instanceVariableNames:'nameandTypeIndex'
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Java-Reader-Support'
!

!JavaUnresolvedRefConstant class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"


! !

!JavaUnresolvedRefConstant methodsFor:'accessing'!

nameandTypeIndex:name_and_type_index
    nameandTypeIndex := name_and_type_index

    "Created: 15.4.1996 / 16:12:00 / cg"
! !

!JavaUnresolvedRefConstant class methodsFor:'documentation'!

version
    ^ '$Id$'
! !