Lines Matching refs:parent

64      * Construct an empty XML filter, with no parent.
66 * <p>This filter will have no parent: you must assign a parent
81 * Construct an XML filter with the specified parent.
83 * @param parent the XML reader from which this filter receives its events.
88 public XMLFilterImpl (XMLReader parent)
90 setParent(parent);
102 * Set the parent reader.
106 * configuration requests. The parent may itself be another filter.</p>
108 * <p>If there is no parent reader set, any attempt to parse
111 * @param parent The parent XML reader.
114 public void setParent (XMLReader parent)
116 this.parent = parent;
121 * Get the parent reader.
123 * @return The parent XML reader, or null if none is set.
128 return parent;
142 * <p>This will always fail if the parent is null.</p>
147 * value can't be assigned or retrieved from the parent.
149 * parent recognizes the feature name but
155 if (parent != null) {
156 parent.setFeature(name, value);
166 * <p>This will always fail if the parent is null.</p>
171 * value can't be assigned or retrieved from the parent.
173 * parent recognizes the feature name but
179 if (parent != null) {
180 return parent.getFeature(name);
190 * <p>This will always fail if the parent is null.</p>
195 * value can't be assigned or retrieved from the parent.
197 * parent recognizes the property name but
203 if (parent != null) {
204 parent.setProperty(name, value);
217 * value can't be assigned or retrieved from the parent.
219 * parent recognizes the property name but
225 if (parent != null) {
226 return parent.getProperty(name);
335 parent.parse(input);
690 * <p>Before every parse, check whether the parent is
696 if (parent == null) {
697 throw new NullPointerException("No parent for filter");
699 parent.setEntityResolver(this);
700 parent.setDTDHandler(this);
701 parent.setContentHandler(this);
702 parent.setErrorHandler(this);
712 private XMLReader parent = null;