return opts;
}
public LockableHashtable getOptionsTable() {
if (options == null) {
options = new LockableHashtable();
V2DDOption[] opts = getOptions();
for (int n = 0; n < opts.length; n++) {
options.put(opts[n].getKey(), opts[n].getValue(), true);
}
}