Skip to main content
summaryrefslogtreecommitdiffstats
blob: dcc8ce2b2881fee44ba8faae866a839ec378bca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2004, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     
 *******************************************************************************/

package org.eclipse.jst.jsp.core.internal.domdocument;

import org.eclipse.wst.html.core.internal.document.DOMStyleModelImpl;
import org.eclipse.wst.xml.core.internal.document.XMLModelParser;
import org.eclipse.wst.xml.core.internal.document.XMLModelUpdater;
import org.w3c.dom.Document;

public class DOMModelForJSP extends DOMStyleModelImpl {

	/**
	 * 
	 */
	public DOMModelForJSP() {
		super();
		// remember, the document is created in super constructor, 
		// via internalCreateDocument
	}
	/**
	 * createDocument method
	 * @return org.w3c.dom.Document
	 */
	protected Document internalCreateDocument() {
		DOMDocumentForJSP document = new DOMDocumentForJSP();
		document.setModel(this);
		return document;
	}
	protected XMLModelParser createModelParser() {
		return new NestedDOMModelParser(this);
	}
	protected XMLModelUpdater createModelUpdater() {
		return new NestDOMModelUpdater(this);
	}
}

Back to the top