Home | History | Annotate | Download | only in refactoring

Lines Matching defs:document

33 import org.eclipse.jface.text.Document;
44 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
107 IDocument document = new Document();
113 document.set(xml);
124 edits.apply(document);
126 edit.apply(document);
133 String actual = document.get();
135 // Ensure that the document is still valid to make sure the edits don't
137 org.w3c.dom.Document doc = DomUtilities.parseDocument(actual, true);
164 IDocument document = new Document();
165 document.set(xml);
167 String before = document.get();
172 edits.apply(document);
174 edit.apply(document);
177 String actual = document.get();
268 org.w3c.dom.Document domDocument = null;
321 protected org.w3c.dom.Document mDomDocument;