blob: 5dd39633b5fc224209cb22869e83c71b4522e66f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.pde.internal.ui.model;
public interface IDocumentTextNode {
void setEnclosingElement(IDocumentNode node);
IDocumentNode getEnclosingElement();
void setText(String text);
String getText();
void setOffset(int offset);
int getOffset();
void setLength(int length);
int getLength();
}