Add toString() methods for better diagnostics.

This commit is contained in:
j2blake 2012-03-28 20:35:35 +00:00
parent a7ced86d49
commit bec33f53a7
2 changed files with 10 additions and 0 deletions

View file

@ -16,4 +16,9 @@ public class DisplayDataProperty extends RequestedAction {
public DataProperty getDataProperty() {
return dataProperty;
}
@Override
public String toString() {
return "DisplayDataProperty[" + dataProperty + "]";
}
}

View file

@ -16,4 +16,9 @@ public class DisplayObjectProperty extends RequestedAction {
public ObjectProperty getObjectProperty() {
return objectProperty;
}
@Override
public String toString() {
return "DisplayObjectProperty[" + objectProperty + "]";
}
}