protected States state = States.MODIFIABLE;
public void addFile(final FileAccessorProperties fap)
throws InvalidStateException {
if (state != States.MODIFIABLE)
throw new InvalidStateException("Cannot add a new file"
+ " from list when it is not in modifiable state");
fapSet.add(fap);
}