aspose file tools
The moose likes Java in General and the fly likes need some Help Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "need some Help" Watch "need some Help" New topic
Author

need some Help

Umair Uddin
Greenhorn

Joined: Sep 12, 2001
Posts: 14
If i need to write my own Collection class implementing BC interface and having functionality and efficiency as much equivalent as possible to the java.lang.Vector...so what can i do???
public interface BC {
void add(int index,Object element);
boolean add(Object o);
int capacity();
int size();
void clear();
Object elementAt(int index);
Object firstElement();
Object lastElement();
Object remove(int index);
boolean remove(Object o);
}
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: need some Help
 
Similar Threads
Adding a List using hasnext(),next() (user defined)
Why are Abstract classes with all concrete methods allowed?
Copy Constructor help.
Most Difficult Assignment
Sublist