* @throws NotDefinedException
* if the parameter type is not currently defined
*/
public boolean isCompatible(Object value) throws NotDefinedException {
if (!isDefined()) {
throw new NotDefinedException(
"Cannot use isCompatible() with an undefined ParameterType"); //$NON-NLS-1$
}
return isInstanceOf(value, type);
}