* Determine whether a node is nilled. Returns true if the value
* of the nilled property is true; false if the value is false or absent
*/
public static boolean isNilled(NodeInfo node) {
BooleanValue b = getNilledProperty(node);
return b != null && b.getBooleanValue();
}