eclipse/eclipse-ui/src/org/apache/sling/ide/eclipse/ui/nav/model/JcrNode.java [755:765]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (parent==null) {
            return false;
        }
	    if (resource!=null) {
            // can be a file or a folder (project is virtually impossible)
	        return true;
	    }
		if (domElement!=null && underlying!=null) {
			return true;
		}
		return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eclipse/eclipse-ui/src/org/apache/sling/ide/eclipse/ui/nav/model/JcrNode.java [1008:1018]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	    if (parent==null) {
	        return false;
	    }
	    if (resource!=null) {
	        // can be a file or a folder (project is virtually impossible)
	        return true;
	    }
        if (domElement!=null && underlying!=null) {
            return true;
        }
        return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



