Java源码示例:javax.faces.component.UIComponentBase

示例1
/**
 * The methods skipped when comparing that all properties are the same in
 * the restored UIComponent tree.
 */
public static Object[][] getCompareSkips_UIComponent(){
	Object[][] skips = new Object[][]{
			// {String methodName, Class nullOrObjectInstanceofClass, boolean skipWasUsed}
			{"getParent", UIComponentBase.class, false},
			{"getFacetsAndChildren", UIComponentBase.class, false},
			{"getAttributes", UIComponentBase.class, false},
	};
	return skips;
}