333435363738394041424344
/** * @host and @client */ protected synchronized Jupiter get(SPath path) { Jupiter clientDoc = this.clientDocs.get(path); if (clientDoc == null) { clientDoc = new Jupiter(true); this.clientDocs.put(path, clientDoc); } return clientDoc; }