Home | History | Annotate | Download | only in builder

Lines Matching refs:document

10 import org.w3c.dom.Document;
21 private final Document document;
25 private synchronized static Document parse(FsFile xmlFile) {
50 Document document = parse(fsFile);
52 return document == null
54 : new XmlBlock(document, fsFile.getPath(), packageName);
57 private XmlBlock(Document document, String filename, String packageName) {
58 this.document = document;
63 public Document getDocument() {
64 return document;