blob: 7ea20369cd741261e11077b8fb91f4a08a64fca6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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 Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.internal.rdt.core.model;
import org.eclipse.cdt.core.parser.ast.ASTAccessVisibility;
public class FieldInfo extends SourceManipulationInfo {
private static final long serialVersionUID = 1L;
public FieldInfo(CElement parent) {
super(parent);
}
public void setVisibility(ASTAccessVisibility currentVisibility) {
((Field) fParent).setVisibility(currentVisibility);
}
protected void setTypeName(String type){
((Field) fParent).setTypeName(type);
}
protected void setConst(boolean isConst){
((Field) fParent).setConst(isConst);
}
protected void setVolatile(boolean isVolatile){
((Field) fParent).setVolatile(isVolatile);
}
public void setStatic(boolean isStatic) {
((Field) fParent).setStatic(isStatic);
}
protected void setMutable(boolean mutable){
((Field) fParent).setMutable(mutable);
}
}