01: // SpaceEntry.java
02: // $Id: SpaceEntry.java,v 1.1 1998/01/22 12:58:40 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.resources;
07:
08: public interface SpaceEntry {
09:
10: /**
11: * Get the Key. This key must be unique and unchanged
12: * during the all life.
13: * @return an int.
14: */
15: public Integer getEntryKey();
16:
17: }
|