1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-16 04:35:45 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2010-04-11 06:19:51 +00:00
parent 36740b0a89
commit 2648a64836
2 changed files with 3 additions and 5 deletions

View file

@ -10,16 +10,16 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.internal.core.model; package org.eclipse.cdt.internal.core.model;
import org.eclipse.cdt.core.model.ICElement; import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.core.model.ITypeDef; import org.eclipse.cdt.core.model.ITypeDef;
public class TypeDef extends SourceManipulation implements ITypeDef{ public class TypeDef extends SourceManipulation implements ITypeDef {
String typeName= ""; //$NON-NLS-1$ String typeName= ""; //$NON-NLS-1$
public TypeDef(ICElement parent, String name) { public TypeDef(ICElement parent, String name) {
super(parent, name, ICElement.C_TYPEDEF); super(parent, name, ICElement.C_TYPEDEF);
} }
/** /**
* Returns the typeName. * Returns the typeName.
* @return String * @return String
@ -35,5 +35,4 @@ public class TypeDef extends SourceManipulation implements ITypeDef{
public void setTypeName(String typeName) { public void setTypeName(String typeName) {
this.typeName = typeName; this.typeName = typeName;
} }
} }

View file

@ -20,5 +20,4 @@ public interface ITypedef extends IBinding, IType {
* Returns the type that this thing is a typedef of * Returns the type that this thing is a typedef of
*/ */
public IType getType(); public IType getType();
} }