blob: 37747e942e70a091596d6d014e8efec2f493a4ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.core.text;
/**
* DocumentXMLNode
*
*/
public abstract class DocumentXMLNode implements IDocumentXMLNode {
/**
*
*/
public DocumentXMLNode() {
// NO-OP
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
return write();
}
/**
* @return
*/
public abstract String write();
}