public void renderInputHandlers(FacesContext facesContext, UIComponent component) throws IOException {
RenderKitUtils.renderPassThroughAttributesOptimized(facesContext, component, INPLACE_INPUT_HANDLER_ATTRIBUTES);
}
public InplaceState getInplaceState(UIComponent component) {
InplaceState state = ((InplaceComponent) component).getState();
if (state == null) {
state = InplaceState.ready;
}
return state;
}