blob: 3e87167aeb2e0b0b2009816c6daaf429afa9c5c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.wst.dtd.core.internal.saxparser;
public class ElementDecl extends BaseNode {
CMNode contentModelNode = null;
public ElementDecl(String name, String ownerDTD) {
this(name, ownerDTD, null, null);
}
public ElementDecl(String name, String ownerDTD, String comment, ErrorMessage errorMessage) {
super(name, ownerDTD, comment, errorMessage);
}
public CMNode getContentModelNode() {
return contentModelNode;
}
public void setContentModelNode(CMNode cmnode) {
contentModelNode = cmnode;
}
}