Add toString() methods for better diagnostics.
This commit is contained in:
parent
a7ced86d49
commit
bec33f53a7
2 changed files with 10 additions and 0 deletions
|
@ -16,4 +16,9 @@ public class DisplayDataProperty extends RequestedAction {
|
|||
public DataProperty getDataProperty() {
|
||||
return dataProperty;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "DisplayDataProperty[" + dataProperty + "]";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,4 +16,9 @@ public class DisplayObjectProperty extends RequestedAction {
|
|||
public ObjectProperty getObjectProperty() {
|
||||
return objectProperty;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "DisplayObjectProperty[" + objectProperty + "]";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue