/** * Returns the result of calling matches() on <code>spec</code> with <code>option</code> as the * argument. * * @return true of <code>option</code> matches <code>spec</code>, and false otherwise. */ public boolean matches(String option) { return spec.matches(option); }
public String getName() { return optSpec.getName(); }