Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 36825188d23cf5adbbc664743380a3cd8ddbe72a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*******************************************************************************
 * 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 {

}

Back to the top