Subversion Repositories programming

Rev

Rev 6 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 75
Line -... Line 1...
-
 
1
//Ira Snyder
-
 
2
//CS241 Section 01
-
 
3
//Project #1
-
 
4
//Due: 10-22-2004
-
 
5
//NOTE: Helped Allen Oliver with his project also, since mine was
-
 
6
//      done by the time he started his.
-
 
7
 
1
public interface Map {
8
public interface Map {
2
  public Object get(Object key);
9
  public Object get(Object key);
3
  // RETURN: value;
10
  // RETURN: value;
4
  // POST: if value!=null, then (key,value) is in this map;
11
  // POST: if value!=null, then (key,value) is in this map;
5
  //       if value==null, then no record in this map has the given key;
12
  //       if value==null, then no record in this map has the given key;