Login | Register
My pages Projects Community openCollabNet

The Tigris site will receive a major upgrade the evening of Monday, December 1, beginning at 8:30 pm PST. Downtime is projected to be about ten hours. Further details in the announcement


jmt.codebase
Interface Class

All Superinterfaces:
ClassOrInterface

public interface Class
extends ClassOrInterface

The Class type describes an ordinary java class and extends the possibilities of the ClassOrInterface type.

Author:
Martin Kersten
See Also:
ClassFactory, AbstractClass

Method Summary
 int getInterfaceCount()
          Returns the number of implemented interfaces.
 java.util.Iterator getInterfaces()
          Returns an Iterator instance for the interfaces.
 ClassReference getSuperclass()
          Returns the extended superclass of the class or null if none.
 
Methods inherited from interface jmt.codebase.ClassOrInterface
getAttributes, getElements, getModifier, getName
 

Method Detail

getInterfaces

public java.util.Iterator getInterfaces()
Returns an Iterator instance for the interfaces.

Returns:
The iterator for the interfaces

getInterfaceCount

public int getInterfaceCount()
Returns the number of implemented interfaces.

Returns:
The number of implemented interfaces

getSuperclass

public ClassReference getSuperclass()
Returns the extended superclass of the class or null if none.

Returns:
The superclass of the class, null if none