blob: 657105f743c3dd9e20d8e69514320bd3f641c9da [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 CMReferenceNode extends CMRepeatableNode {
private int type = CMNodeType.ELEMENT_REFERENCE;
public CMReferenceNode(String refName) {
this(refName, CMNodeType.ELEMENT_REFERENCE);
}
public CMReferenceNode(String refName, int type) {
super(refName);
this.type = type;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String toString() {
return " RefName: " + getName() + " Type: " + getType() + " OccType: " + getOccurrence() + "\n";
}
}