I have commons-primitives-1.0.jar added as external executable jar on my eclipse.
So i am able to import org.apache.commons.collections.primitives.ArrayUnsignedShortList;
and I have a function
private void start() {
_nexts = new ArrayList(_iterators.size());
for (int i = 0, m = _iterators.size(); i < m; i++) {
_nexts.add(null);
}
_nextSet = new BitSet(_iterators.size());
_prevFrom = new ArrayUnsignedShortList(); < ---give me error here
}
it says,
The constructor ArrayUnsignedShortList() is not visible
I am not quite sure how to go about fixing this error because when i looked at the ArraysUnsignedShortList.java, it does have constructor.
Help?
public ArrayUnsignedShortList() Construct an empty list with the default initial capacity.
^ so i should be able to call it..
_prevFrom? - Paul Bellora