633634635636637638639
/** * {@inheritDoc} */ public JCRPlaceholderNode getPlaceholder() throws RepositoryException { return new JCRPlaceholderNode(this); }
768769770771772773774775
/** * {@inheritDoc} */ public List<JCRNodeWrapper> getEditableChildren() { List<JCRNodeWrapper> list = getChildren(); list.add(new JCRPlaceholderNode(this)); return list; }