1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[225197] Got rid of IElementPropertiesProvider.getPropertyName/Description methods.

This commit is contained in:
Pawel Piech 2008-04-01 20:18:09 +00:00
parent cb02c10c78
commit 19e920c433
3 changed files with 0 additions and 28 deletions

View file

@ -14,14 +14,4 @@ public interface IElementPropertiesProvider {
* a set of properties is requested and stores them
*/
public void update(IPropertiesUpdate[] updates);
/**
* Returns a user-presentable name for the given property.
*/
public String getPropertyName(String property);
/**
* Returns a description for the given property.
*/
public String getPropertyDescription(String property);
}

View file

@ -161,14 +161,4 @@ class TimersVMNode extends AbstractDMVMNode
}
requestMonitor.done();
}
public String getPropertyDescription(String property) {
return null;
}
public String getPropertyName(String property) {
return null;
}
}

View file

@ -192,12 +192,4 @@ class TriggersVMNode extends AbstractDMVMNode
}
super.dispose();
}
public String getPropertyDescription(String property) {
return null;
}
public String getPropertyName(String property) {
return null;
}
}