blob: 36825188d23cf5adbbc664743380a3cd8ddbe72a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Florian Thienel 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:
* Florian Thienel - initial API and implementation
*******************************************************************************/
package org.eclipse.vex.core.dom;
/**
* A representation of an XML comment in the DOM. Comments have textual content, a start and an end tag.
*
* @author Florian Thienel
*/
public interface IComment extends INode {
}