~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to upc/org.eclipse.cdt.core.parser.upc/src/org/eclipse/cdt/core/dom/upc/ast/IUPCASTDeclSpecifier.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2011-10-06 21:15:04 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111006211504-8dutmljjih0zikfv
Tags: 8.0.1-1
* New upstream release.
* Split the JNI packages into a separate architecture dependent
  package and made eclipse-cdt architecture independent.
* Install JNI libraries into multiarch aware location
* Bumped Standards-Version to 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 *  Copyright (c) 2006, 2008 IBM Corporation and others.
 
3
 *  All rights reserved. This program and the accompanying materials
 
4
 *  are made available under the terms of the Eclipse Public License v1.0
 
5
 *  which accompanies this distribution, and is available at
 
6
 *  http://www.eclipse.org/legal/epl-v10.html
 
7
 * 
 
8
 *  Contributors:
 
9
 *     IBM Corporation - initial API and implementation
 
10
 *******************************************************************************/
 
11
package org.eclipse.cdt.core.dom.upc.ast;
 
12
 
 
13
import org.eclipse.cdt.core.dom.ast.ASTNodeProperty;
 
14
import org.eclipse.cdt.core.dom.ast.IASTExpression;
 
15
import org.eclipse.cdt.core.dom.ast.c.ICASTDeclSpecifier;
 
16
 
 
17
public interface IUPCASTDeclSpecifier extends ICASTDeclSpecifier {
 
18
 
 
19
        public static final ASTNodeProperty BLOCK_SIZE_EXPRESSION = new ASTNodeProperty(
 
20
                "IUPCASTDeclSpecifier.BLOCK_SIZE_EXPRESSION - IUPCASTDeclSpecifier block size expression"); //$NON-NLS-1$
 
21
 
 
22
        
 
23
        public static final int rt_unspecified = 0;
 
24
        
 
25
        public static final int rt_strict = 1;
 
26
        
 
27
        public static final int rt_relaxed = 2;
 
28
 
 
29
        
 
30
 
 
31
        public static final int sh_not_shared = 0;
 
32
        
 
33
        public static final int sh_shared_default_block_size = 1;
 
34
        
 
35
        public static final int sh_shared_pure_allocation = 2;
 
36
        
 
37
        public static final int sh_shared_indefinite_allocation = 3;
 
38
        
 
39
        public static final int sh_shared_constant_expression = 4;
 
40
        
 
41
        
 
42
        
 
43
        public int getReferenceType();
 
44
        
 
45
        public void setReferenceType(int referenceType);
 
46
        
 
47
        
 
48
        
 
49
        public int getSharedQualifier();
 
50
        
 
51
        public void setSharedQualifier(int shared);
 
52
        
 
53
        
 
54
        
 
55
        public IASTExpression getBlockSizeExpression();
 
56
 
 
57
        public void setBlockSizeExpression(IASTExpression expr);
 
58
        
 
59
        
 
60
        public IUPCASTDeclSpecifier copy();
 
61
}