Add toString to OrderElement to make easier debug process

This commit is contained in:
Manuel Rego Casasnovas 2011-11-10 17:39:21 +01:00
parent 24fae5503d
commit 91b2fcbcd7

View file

@ -1448,4 +1448,8 @@ public abstract class OrderElement extends IntegrationEntity implements
return new ArrayList<OrderVersion>(schedulingDatasForVersion.keySet());
}
public String toString() {
return super.toString() + " :: " + getName();
}
}