Add toStrings

This commit is contained in:
2023-03-09 09:39:15 -06:00
parent 10afa1a80e
commit eae164c686
2 changed files with 30 additions and 0 deletions

View File

@ -132,4 +132,18 @@ public class AdHocScriptCodeReference extends QCodeReference
return (this);
}
/*******************************************************************************
**
*******************************************************************************/
@Override
public String toString()
{
return "AdHocScriptCodeReference{" +
"scriptId=" + scriptId +
", scriptRevisionId=" + scriptRevisionId +
", scriptRevisionRecord=" + scriptRevisionRecord +
'}';
}
}

View File

@ -167,4 +167,20 @@ public class AssociatedScriptCodeReference extends QCodeReference
{
return Objects.hash(recordTable, recordPrimaryKey, fieldName);
}
/*******************************************************************************
**
*******************************************************************************/
@Override
public String toString()
{
return "AssociatedScriptCodeReference{" +
"recordTable='" + recordTable + '\'' +
", recordPrimaryKey=" + recordPrimaryKey +
", fieldName='" + fieldName + '\'' +
'}';
}
}