37318. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/17/2019 10:54:23 AM Central Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

37318.1 Files compared

# Location File Last Modified
1 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service AbstractArrayTO.java Wed Jan 16 16:06:42 2019 UTC
2 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service AbstractArrayTO.java Wed Jan 16 20:15:10 2019 UTC

37318.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 184
Changed 1 2
Inserted 0 0
Removed 0 0

37318.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

37318.4 Active regular expressions

No regular expressions were active.

37318.5 Comparison detail

  1  
  2   package go v.va.med.v ia.service ;
  3  
  4   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  5   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  6   import jav ax.xml.bin d.annotati on.XmlSeeA lso;
  7   import jav ax.xml.bin d.annotati on.XmlType ;
  8  
  9  
  10   /**
  11    * <p>Java  class for  abstractA rrayTO com plex type.
  12    * 
  13    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  14    * 
  15    * <pre>
  16    * &lt;com plexType n ame="abstr actArrayTO "&gt;
  17    *   &lt;c omplexCont ent&gt;
  18    *       &lt;extens ion base=" {http:// DNS          . URL         /}abstract TO"&gt;
  19    *       & lt;sequenc e&gt;
  20    *          &lt;eleme nt name="c ount" type ="{http:// www.w3.org /2001/XMLS chema}int"  minOccurs ="0" form= "unqualifi ed"/&gt;
  21    *       & lt;/sequen ce&gt;
  22    *     &lt ;/extensio n&gt;
  23    *   &lt;/ complexCon tent&gt;
  24    * &lt;/co mplexType& gt;
  25    * </pre>
  26    * 
  27    * 
  28    */
  29   @XmlAccess orType(Xml AccessType .FIELD)
  30   @XmlType(n ame = "abs tractArray TO", propO rder = {
  31       "count "
  32   })
  33   @XmlSeeAls o({
  34       DataSo urceArray. class,
  35       LabTes tArray.cla ss,
  36       Patien tArray.cla ss,
  37       Person Array.clas s,
  38       SiteAr ray.class,
  39       Tagged AllergyArr ays.class,
  40       Tagged Appointmen tArrays.cl ass,
  41       Tagged ChemHemRpt Arrays.cla ss,
  42       Tagged ConsultArr ays.class,
  43       Tagged CytologyRp tArrays.cl ass,
  44       Tagged IcdRptArra ys.class,
  45       Tagged LabTestArr ays.class,
  46       Tagged MentalHeal thInstrume ntAdminist rationArra ys.class,
  47       Tagged Microbiolo gyRptArray s.class,
  48       Tagged NoteArrays .class,
  49       Tagged OrderArray s.class,
  50       Tagged PatientAss ociateArra ys.class,
  51       Tagged RadiologyR eportArray s.class,
  52       Tagged SurgeryRep ortArrays. class,
  53       Tagged SurgicalPa thologyRpt Arrays.cla ss,
  54       Tagged TextArray. class,
  55       Tagged VitalSignA rrays.clas s,
  56       Tagged VitalSignS etArrays.c lass,
  57       Abstra ctTaggedAr rayTO.clas s,
  58       UserAr ray.class,
  59       UserSe curityKeyA rray.class ,
  60       Tagged ProblemArr ays.class,
  61       Patien tRecordFla gArray.cla ss
  62   })
  63   public cla ss Abstrac tArrayTO
  64       extend s Abstract TO
  65   {
  66  
  67       protec ted Intege r count;
  68  
  69       /**
  70        * Get s the valu e of the c ount prope rty.
  71        * 
  72        * @re turn
  73        *      possible  object is
  74        *      {@link In teger }
  75        *      
  76        */
  77       public  Integer g etCount()  {
  78           re turn count ;
  79       }
  80  
  81       /**
  82        * Set s the valu e of the c ount prope rty.
  83        * 
  84        * @pa ram value
  85        *      allowed o bject is
  86        *      {@link In teger }
  87        *      
  88        */
  89       public  void setC ount(Integ er value)  {
  90           th is.count =  value;
  91       }
  92  
  93   }