1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[fix] Return something useful and human readable from toString()

This commit is contained in:
Uwe Stieber 2007-03-27 16:21:52 +00:00
parent d3ba9e3301
commit 21ae98e8ec

View file

@ -154,4 +154,11 @@ public class RSESystemType extends PlatformObject implements IRSESystemType {
public String[] getSubsystemConfigurationIds() {
return subsystemConfigurationIds;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
return getLabel() + " (" + getId() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
}
}