1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +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;
import org.eclipse.cdt.core.model.ICElement;
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$
public TypeDef(ICElement parent, String name) {
super(parent, name, ICElement.C_TYPEDEF);
}
/**
* Returns the typeName.
* @return String
@ -35,5 +35,4 @@ public class TypeDef extends SourceManipulation implements ITypeDef{
public void setTypeName(String 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
*/
public IType getType();
}