mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-02 13:55:39 +02:00
Removed deprecated ICPPBase.getBaseClassSpecifierName() method.
Change-Id: I7a846bf9f91193bd74ea8ae006a35159e47a7367
This commit is contained in:
parent
b50f68c053
commit
6a7969bc85
4 changed files with 0 additions and 28 deletions
|
@ -44,13 +44,6 @@ public interface ICPPBase extends Cloneable {
|
||||||
*/
|
*/
|
||||||
public IType getBaseClassType();
|
public IType getBaseClassType();
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated Don't use it, a base class may be specified without the use of a name.
|
|
||||||
* @noreference This method is not intended to be referenced by clients.
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public IName getBaseClassSpecifierName();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the name of the class definition that originally declares the base.
|
* Returns the name of the class definition that originally declares the base.
|
||||||
* @since 5.5
|
* @since 5.5
|
||||||
|
|
|
@ -91,12 +91,6 @@ public class CPPBaseClause implements ICPPBase, ICPPInternalBase {
|
||||||
return inheritedConstructorsSource;
|
return inheritedConstructorsSource;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
@Deprecated
|
|
||||||
public IName getBaseClassSpecifierName() {
|
|
||||||
return base.getName();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IName getClassDefinitionName() {
|
public IName getClassDefinitionName() {
|
||||||
IASTNode parent = base.getParent();
|
IASTNode parent = base.getParent();
|
||||||
|
|
|
@ -84,11 +84,6 @@ class CompositeCPPClassType extends CompositeCPPBinding implements ICPPClassType
|
||||||
return baseClass;
|
return baseClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override @Deprecated
|
|
||||||
public IName getBaseClassSpecifierName() {
|
|
||||||
return base.getBaseClassSpecifierName();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IName getClassDefinitionName() {
|
public IName getClassDefinitionName() {
|
||||||
return base.getClassDefinitionName();
|
return base.getClassDefinitionName();
|
||||||
|
|
|
@ -86,11 +86,6 @@ class PDOMCPPBase implements ICPPBase, ICPPInternalBase {
|
||||||
return getDB().getByte(record + FLAGS);
|
return getDB().getByte(record + FLAGS);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public PDOMName getBaseClassSpecifierName() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PDOMName getClassDefinitionName() {
|
public PDOMName getClassDefinitionName() {
|
||||||
try {
|
try {
|
||||||
|
@ -198,11 +193,6 @@ class PDOMCPPBase implements ICPPBase, ICPPInternalBase {
|
||||||
return baseClass;
|
return baseClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override @Deprecated
|
|
||||||
public IName getBaseClassSpecifierName() {
|
|
||||||
return base.getBaseClassSpecifierName();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IName getClassDefinitionName() {
|
public IName getClassDefinitionName() {
|
||||||
return base.getClassDefinitionName();
|
return base.getClassDefinitionName();
|
||||||
|
|
Loading…
Add table
Reference in a new issue