예제 #1
0
 /**
  * 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);
 }
예제 #2
0
파일: Option.java 프로젝트: lossyrob/jts
 public String getName() {
   return optSpec.getName();
 }