37319. 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.

37319.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 AbstractTaggedArrayTO.java Wed Jan 16 16:06:30 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 AbstractTaggedArrayTO.java Wed Jan 16 20:15:11 2019 UTC

37319.2 Comparison summary

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

37319.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

37319.4 Active regular expressions

No regular expressions were active.

37319.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  abstractT aggedArray TO complex  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 actTaggedA rrayTO"&gt ;
  17    *   &lt;c omplexCont ent&gt;
  18    *       &lt;extens ion base=" {http:// DNS          . URL         /}abstract ArrayTO"&g t;
  19    *       & lt;sequenc e&gt;
  20    *          &lt;eleme nt name="t ag" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0" form ="unqualif ied"/&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 tractTagge dArrayTO",  propOrder  = {
  31       "tag"
  32   })
  33   @XmlSeeAls o({
  34       Tagged AllergyArr ay.class,
  35       Tagged Appointmen tArray.cla ss,
  36       Tagged ChemHemRpt Array.clas s,
  37       Tagged ConsultArr ay.class,
  38       Tagged CytologyRp tArray.cla ss,
  39       Tagged GraphingIt emDataArra y.class,
  40       Tagged HealthFact orArray.cl ass,
  41       Tagged HealthSumm aryArray.c lass,
  42       Tagged HospitalLo cationArra y.class,
  43       Tagged IcdRptArra y.class,
  44       Tagged InpatientS tayArray.c lass,
  45       Tagged ItemForGra phingTypeA rray.class ,
  46       Tagged LabTestArr ay.class,
  47       Tagged LexiconEnt ryArray.cl ass,
  48       Tagged Medication Array.clas s,
  49       Tagged Medication Arrays.cla ss,
  50       Tagged MentalHeal thInstrume ntAdminist rationArra y.class,
  51       Tagged Microbiolo gyRptArray .class,
  52       Tagged NoteArray. class,
  53       Tagged OrderArray .class,
  54       Tagged PatientArr ay.class,
  55       Tagged PatientAss ociateArra y.class,
  56       Tagged ProblemArr ay.class,
  57       Tagged RadiologyR eportArray .class,
  58       Tagged SurgeryRep ortArray.c lass,
  59       Tagged SurgicalPa thologyRpt Array.clas s,
  60       Tagged VisitArray .class,
  61       Tagged VitalSignA rray.class ,
  62       Tagged VitalSignS etArray.cl ass,
  63       TimeSl otArray.cl ass
  64   })
  65   public cla ss Abstrac tTaggedArr ayTO
  66       extend s Abstract ArrayTO
  67   {
  68  
  69       protec ted String  tag;
  70  
  71       /**
  72        * Get s the valu e of the t ag propert y.
  73        * 
  74        * @re turn
  75        *      possible  object is
  76        *      {@link St ring }
  77        *      
  78        */
  79       public  String ge tTag() {
  80           re turn tag;
  81       }
  82  
  83       /**
  84        * Set s the valu e of the t ag propert y.
  85        * 
  86        * @pa ram value
  87        *      allowed o bject is
  88        *      {@link St ring }
  89        *      
  90        */
  91       public  void setT ag(String  value) {
  92           th is.tag = v alue;
  93       }
  94  
  95   }