File: java.util.Dictionary

package info (click to toggle)
bock 0.20.2.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,228 kB
  • ctags: 1,370
  • sloc: ansic: 7,367; java: 5,553; yacc: 963; lex: 392; makefile: 243; sh: 90; perl: 42
file content (17 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// java.util.Dictionary -- an implementation of the Java Language Spec sec 21.4
// Written by Charles Briscoe-Smith; refer to the file LEGAL for details.

package java.util;

public abstract class Dictionary {

	public abstract int size();
	public abstract boolean isEmpty();
	public abstract Object get(Object key) throws NullPointerException;
	public abstract Object put(Object key, Object elem)
			throws NullPointerException;
	public abstract Object remove(Object key) throws NullPointerException;
	public abstract Enumeration keys();
	public abstract Enumeration elements();

}