Searched refs:ZoneNode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DZoneNode.java35 * ZoneNode extends NameNode to represent a tree of the zones in the
37 * A ZoneNode that represents a zone may be "populated" with a
44 * ZoneNode.isZoneCut() always returns false.
56 class ZoneNode extends NameNode { class in inherits:NameNode
62 ZoneNode(String label) { method in class:ZoneNode
67 return new ZoneNode(label);
108 ZoneNode getDeepestPopulated(DnsName fqdn) {
109 ZoneNode znode = this;
110 ZoneNode popNode = isPopulated() ? this : null;
112 znode = (ZoneNode) znod
[all...]
H A DDnsContext.java88 private static final ZoneNode zoneTree = new ZoneNode(null);
778 * The depth of a ZoneNode can thereafter be accessed without
785 * accomplished by ZoneNode.populate(). The contents are accessed
786 * via a soft reference, so a ZoneNode may be seen to be populated
800 ZoneNode znode;
854 znode = (ZoneNode) zoneTree.add(zone, 1); // "1" to skip root
880 private NameNode populateZone(ZoneNode znode, DnsName zone)
892 * Determine if a ZoneNode's data is current.
903 private boolean isZoneCurrent(ZoneNode znod
[all...]

Completed in 45 milliseconds