home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
Enumerator.java
< prev
next >
Wrap
Text File
|
1998-04-27
|
1KB
|
37 lines
/* ********************************************************************************
Enumerator.java ****************************************************************
******************************************************************************** */
package aspcomp;
/**
* Common enumerator interface.
*/
public interface Enumerator
extends java.lang.Cloneable,
java.util.Enumeration
{
/* ********************************************************************************
External (Public) Interface Methods ********************************************
******************************************************************************** */
public void reset();
/* ********************************************************************************
External (Public) java.util.Enumeration Interface Methods **********************
******************************************************************************** */
// boolean hasMoreElements()
// Object nextElement() throws NoSuchElementException
/* ********************************************************************************
External (Public) java.lang.Cloneable Interface Methods ************************
******************************************************************************** */
// public Object clone()
}