use of name.abuchen.portfolio.model.Classification in project portfolio by buchen.
the class DataSeries method getSearchLabel.
public String getSearchLabel() {
StringBuilder buf = new StringBuilder();
buf.append(label);
if (instance instanceof Classification) {
Classification parent = ((Classification) instance).getParent();
// $NON-NLS-1$ //$NON-NLS-2$
buf.append(" (").append(parent.getPathName(true)).append(")");
}
if (isBenchmark())
buf.append(Messages.ChartSeriesBenchmarkSuffix);
return buf.toString();
}
Aggregations