Home | History | Annotate | Download | only in tools

Lines Matching defs:links

17 // Note that the links must be declared prior to the zone names.
31 private Map<String,String> links = new HashMap<String,String>();
73 links.put(from, to);
75 String link = links.get(s);
89 // Fill in fields for links.
90 Iterator<String> it = links.keySet().iterator();
93 String to = links.get(from);
135 // Follow the chain of links to work out where the real data for this zone lives.
137 while (links.get(actualZoneName) != null) {
138 actualZoneName = links.get(actualZoneName);