package org.j3de.events;
import java.util.List;
import org.j3de.input.ActivationManager;
public class EventSources {
private VirtualEventSource[] vEventSources;
private List assignedFocusAware;
public EventSources(List sources,
List assignedFocusAware,
ActivationManager activationManager) {
this.vEventSources = new VirtualEventSource[sources.size()];
this.assignedFocusAware = assignedFocusAware;
for (int i=0; i vEventSources[i] = new VirtualEventSource((EventSource)sources.get(i), activationManager);
}
public int getSourceCount() {
return vEventSources.length;
}
public EventSource getEventSource(int i) {
return vEventSources[i];
}
public int getAssignedFocusAware(int i) {
return ((Integer)assignedFocusAware.get(i)).intValue();
}
}