我有机会为我的项目编写一些自定义渲染器,并且效果很好。但是,我对 ResponseWriter 方法中的一些参数感到有些困惑。文档没有很好地解释这一点,所以我希望一位常驻 JSF 专家能更好地解释这一点。具体来说:
public abstract void startElement(java.lang.String name,
javax.faces.component.UIComponent component)
throws java.io.IOException
Parameters:
name - Name of the element to be started
component - The UIComponent (if any) to which this element corresponds
第二个参数实际上是做什么的?无论我在渲染器中传递“null”还是“this”似乎都可以正常工作?
同样对于 writeAttribute:
public abstract void writeAttribute(java.lang.String name,
java.lang.Object value,
java.lang.String property)
throws java.io.IOException
Parameters:
name - Attribute name to be added
value - Attribute value to be added
property - Name of the property or attribute (if any) of the UIComponent associated with the containing element, to which this generated attribute corresponds
为什么 ResponseWriter 需要知道支持属性?同样,如果我在编写类属性时传递 null 或“styleClass”,它似乎工作正常。
好奇的人想知道,而我的 google-fu 在这方面失败了……