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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DTubeCloner.java43 protected final Map<Object,Object> master2copy = new HashMap<Object,Object>(); field in class:TubeCloner
89 Tube r = (Tube)master2copy.get(t);
93 assert master2copy.get(t)==r : "the tube must call the add(...) method to register itself before start copying other pipes, but "+t +" hasn't done so";
109 assert !master2copy.containsKey(original);
111 master2copy.put(original,copy);
H A DPipeCloner.java57 Pipe r = (Pipe)master2copy.get(p);
61 assert master2copy.get(p)==r : "the pipe must call the add(...) method to register itself before start copying other pipes, but "+p+" hasn't done so";
71 assert !master2copy.containsKey(original);
73 master2copy.put(original,copy);

Completed in 32 milliseconds