This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: PATCH: java.util.Collections and java.util.Vector


On Wednesday, November 22, 2000 10:20 AM, Tom Tromey [SMTP:tromey@cygnus.com] 
wrote:
> Hey Bryce.  Were the old libgcj and Classpath Vector classes very
> different?

They must have been.  Bryce says Vector is now 1.3 compatible.  On last check, 
our Vector class was missing the following:

	protected void removeRange(int, int);
	public boolean add(java.lang.Object);
	public boolean addAll(int, java.util.Collection);
	public boolean addAll(java.util.Collection);
	public boolean containsAll(java.util.Collection);
	public boolean equals(java.lang.Object);
	public boolean removeAll(java.util.Collection);
	public boolean retainAll(java.util.Collection);
	public int hashCode();
	public java.lang.Object get(int);
	public java.lang.Object remove(int);
	public java.lang.Object set(int, java.lang.Object);
	public java.lang.Object toArray()[];
	public java.lang.Object toArray(java.lang.Object[])[];
	public java.util.List subList(int, int);
	public java.util.Vector(java.util.Collection);
	public void add(int, java.lang.Object);
	public void clear();

AG


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]