Skip to main content
summaryrefslogblamecommitdiffstats
blob: f1cbae94fe5346781d8e242dde1efefc83502953 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                
                                                       

                                                                        
                                                           


                                            
                                       
                                                                                 
                                                     
 
                                                     
                                                             
                                                        



                   
                                                                                               







                             
    



                               



                                  
                                                   
                          


                          



                              
                                         
                          


                        



                                 
                                            
                          


                        



                               
                                          
                          


                            
                                          
                          


                       



                                
                                           
                          


                        



                                 
                                            
                          


                              










                                                                    

                                  

                                                   
 
/*******************************************************************************
 * Copyright (c) 2004, 2008 IBM Corporation 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:
 * IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;

import org.eclipse.cdt.core.dom.ast.ASTSignatureUtil;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTDeclSpecifier;
import org.eclipse.cdt.internal.core.dom.parser.ASTNode;

/**
 * @author jcamelon
 */
public abstract class CPPASTBaseDeclSpecifier extends ASTNode implements ICPPASTDeclSpecifier {

    private boolean friend;
    private boolean inline;
    private boolean volatil;
    private boolean isConst;
    private int sc;
    private boolean virtual;
    private boolean explicit;
    
    public boolean isFriend() {
        return friend;
    }

    public int getStorageClass() {
        return sc;
    }

    public void setStorageClass(int storageClass) {
        assertNotFrozen();
        sc = storageClass;
    }

    public boolean isConst() {
        return isConst;
    }

    public void setConst(boolean value) {
        assertNotFrozen();
        isConst = value;
    }

    public boolean isVolatile() {
        return volatil;
    }

    public void setVolatile(boolean value) {
        assertNotFrozen();
        volatil = value;
    }

    public boolean isInline() {
        return inline;
    }

    public void setInline(boolean value) {
        assertNotFrozen();
        this.inline = value;
    }

    public void setFriend(boolean value) {
        assertNotFrozen();
        friend = value;
    }

    public boolean isVirtual() {
        return virtual;
    }

    public void setVirtual(boolean value) {
        assertNotFrozen();
        virtual = value;
    }

    public boolean isExplicit() {
        return explicit;
    }

    public void setExplicit(boolean value) {
        assertNotFrozen();
        this.explicit = value;
    }

    protected void copyBaseDeclSpec(CPPASTBaseDeclSpecifier other) {
    	other.friend = friend;
    	other.inline = inline;
    	other.volatil = volatil;
    	other.isConst = isConst;
    	other.virtual = virtual;
    	other.explicit = explicit;
    	other.sc = sc;
    	other.setOffsetAndLength(this);
    }
    
    @Override
	public String toString() {
    	return ASTSignatureUtil.getSignature(this);
    }
}

Back to the top