Example #1
0
 /**
  * Copies Script to TmpScript
  *
  * @param g
  */
 public TmpScript(Script g) {
   this(
       g.getScriptID(),
       g.getCountryCode(),
       g.getFunctionCode(),
       g.getUserFieldID(),
       g.getPriorityID(),
       g.getDesc(),
       g.getMessageTypeID(),
       g.getMessage(),
       g.getCommentTypeID(),
       g.getComment(),
       g.getStatusID(),
       g.getActionID(),
       g.getCreatorUserID(),
       g.getDateCreated(),
       g.getApproverUserID(),
       g.getDateApproved(),
       g.getLastModifierUserID(),
       g.getDateLastModified());
 }