blob: f5dca4f39d57d4c8633ae8ad3b362fa5cd2ef2fd [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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.core.parser;
import org.eclipse.wst.sse.core.text.ITextRegion;
public class TagMarker {
// a ITextRegion (meant to be updated with the model) marking the position
// where this tagname becomes effective
protected ITextRegion fMarker = null;
// the tagname
protected String fTagName = null;
/**
*
*/
public TagMarker() {
super();
}
public TagMarker(String tagname) {
super();
setTagName(tagname);
}
public TagMarker(String tagname, ITextRegion marker) {
super();
setTagName(tagname);
setMarker(marker);
}
/**
* @return com.ibm.sed.structuredDocument.ITextRegion
*/
public final ITextRegion getMarker() {
return fMarker;
}
/**
* @return java.lang.String
*/
public final String getTagName() {
return fTagName;
}
/**
* @return boolean
*/
public boolean isGlobal() {
return fMarker == null;
}
/**
* @param newMarker
* com.ibm.sed.structuredDocument.ITextRegion
*/
public final void setMarker(ITextRegion newMarker) {
fMarker = newMarker;
}
/**
* @param newTagname
* java.lang.String
*/
public final void setTagName(String newTagName) {
fTagName = newTagName;
}
}