public final java.lang.String[] | getParts(java.lang.String chosenImpl)Return the parts this Argument consists of, if the
implementation matches the chosen implementation.
if (impl == null || impl.equals(chosenImpl)) {
return super.getParts();
} else {
return new String[0];
}
|