18. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2017 3:13:55 PM Eastern Daylight 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.

18.1 Files compared

# Location File Last Modified
1 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde DependentCollection.java Fri Aug 26 21:28:56 2016 UTC
2 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde DependentCollection.java Mon Apr 24 22:12:17 2017 UTC

18.2 Comparison summary

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

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

18.4 Active regular expressions

No regular expressions were active.

18.5 Comparison detail

  1  
  2   package go v.va.med.p harmacy.ws clients.eA nde;
  3  
  4   import jav a.util.Arr ayList;
  5   import jav a.util.Lis t;
  6   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  7   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  8   import jav ax.xml.bin d.annotati on.XmlType ;
  9  
  10  
  11   /**
  12    * <p>Java  class for  dependent Collection  complex t ype.
  13    * 
  14    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  15    * 
  16    * <pre>
  17    * &lt;com plexType n ame="depen dentCollec tion"&gt;
  18    *   &lt;c omplexCont ent&gt;
  19    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "&gt;
  20    *       & lt;sequenc e&gt;
  21    *           &lt;elemen t name="de pendent" t ype="{http :// DNS . URL         /schemas}d ependentIn fo" maxOcc urs="unbou nded" minO ccurs="0"/ &gt;
  22    *       & lt;/sequen ce&gt;
  23    *     &lt ;/restrict ion&gt;
  24    *   &lt;/ complexCon tent&gt;
  25    * &lt;/co mplexType& gt;
  26    * </pre>
  27    * 
  28    * 
  29    */
  30   @XmlAccess orType(Xml AccessType .FIELD)
  31   @XmlType(n ame = "dep endentColl ection", p ropOrder =  {
  32       "depen dent"
  33   })
  34   public cla ss Depende ntCollecti on {
  35  
  36       protec ted List<D ependentIn fo> depend ent;
  37  
  38       /**
  39        * Get s the valu e of the d ependent p roperty.
  40        * 
  41        * <p>
  42        * Thi s accessor  method re turns a re ference to  the live  list,
  43        * not  a snapsho t. Therefo re any mod ification  you make t o the
  44        * ret urned list  will be p resent ins ide the JA XB object.
  45        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the depe ndent prop erty.
  46        * 
  47        * <p>
  48        * For  example,  to add a n ew item, d o as follo ws:
  49        * <pr e>
  50        *     getDepende nt().add(n ewItem);
  51        * </p re>
  52        * 
  53        * 
  54        * <p>
  55        * Obj ects of th e followin g type(s)  are allowe d in the l ist
  56        * {@l ink Depend entInfo }
  57        * 
  58        * 
  59        */
  60       public  List<Depe ndentInfo>  getDepend ent() {
  61           if  (dependen t == null)  {
  62                dependen t = new Ar rayList<De pendentInf o>();
  63           }
  64           re turn this. dependent;
  65       }
  66  
  67   }