Created
December 19, 2014 10:46
Revisions
-
highsource renamed this gist
Dec 19, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
highsource created this gist
Dec 19, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ public int hashCode() { int currentHashCode = 1; { currentHashCode = (currentHashCode* 31); USAddress theShipTo; theShipTo = this.getShipTo(); if (theShipTo!= null) { currentHashCode += theShipTo.hashCode(); } } { currentHashCode = (currentHashCode* 31); USAddress theBillTo; theBillTo = this.getBillTo(); if (theBillTo!= null) { currentHashCode += theBillTo.hashCode(); } } { currentHashCode = (currentHashCode* 31); String theComment; theComment = this.getComment(); if (theComment!= null) { currentHashCode += theComment.hashCode(); } } { currentHashCode = (currentHashCode* 31); Items theItems; theItems = this.getItems(); if (theItems!= null) { currentHashCode += theItems.hashCode(); } } { currentHashCode = (currentHashCode* 31); XMLGregorianCalendar theOrderDate; theOrderDate = this.getOrderDate(); if (theOrderDate!= null) { currentHashCode += theOrderDate.hashCode(); } } return currentHashCode; }