mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Add toStrings
This commit is contained in:
@ -132,4 +132,18 @@ public class AdHocScriptCodeReference extends QCodeReference
|
||||
return (this);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
*******************************************************************************/
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "AdHocScriptCodeReference{" +
|
||||
"scriptId=" + scriptId +
|
||||
", scriptRevisionId=" + scriptRevisionId +
|
||||
", scriptRevisionRecord=" + scriptRevisionRecord +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
@ -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 + '\'' +
|
||||
'}';
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user