Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f235e684403fd5b1c0d27baa9ae76e483248d7c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.eclipse.cdt.internal.core.newparser.util;

import java.util.List;

/**
 * @author jcamelon
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public class DeclarationSpecifier extends DeclSpecifier {
	
	public interface Container {
	
		public DeclarationSpecifier getDeclSpecifier();
	
		public void setDeclSpecifier( DeclarationSpecifier in );
	
		public void addDeclarator(Object declarator);
		public void removeDeclarator( Object declarator );
		public List getDeclarators();

	};
}

Back to the top