4344454647484950515253545556
* @param key the {@link Document} key * @return the {@link Document} object mapped from the key */ @Override public Document get(Object key) { Document doc = super.get(key); if (doc == null) { doc = new Document(); put(key, doc); } return doc;