Skip to main content
summaryrefslogtreecommitdiffstats
blob: d0be1aee1929dabcdd754d76defbf6e0c34fea92 (plain) (blame)
1
2
3
4
5
6
7
8
9
package org.eclipse.papyrus.alf.syntax.common;

import java.util.List;

public abstract class DocumentedElement {

	protected List<String> documentation ;
	
}

Back to the top