public void updateUI(CfmlFunctionDescription p, ParameterInfoUIContext context) {
    if (p == null) {
      context.setUIComponentEnabled(false);
      return;
    }

    myText = p.getParametersListPresentableText();
    context.setupUIComponentPresentation(
        myText,
        0,
        0,
        !context.isUIComponentEnabled(),
        false,
        false,
        context.getDefaultParameterColor());
  }
 public Object[] getParametersForDocumentation(
     CfmlFunctionDescription p, ParameterInfoContext context) {
   return ArrayUtil.toObjectArray(p.getParameters());
 }