Produced by Araxis Merge on 6/11/2019 10:54:13 AM 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.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\persistent | QueryInfo.java | Wed May 29 15:26:04 2019 UTC |
| 2 | HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\persistent | QueryInfo.java | Mon Jun 10 19:30:05 2019 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 224 |
| Changed | 1 | 2 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| 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 |
No regular expressions were active.
| 1 | /********* ********** ********** ********** ********** ********** ********* | |
| 2 | * Copyrii ght 2006 V HA. All ri ghts reser ved | |
| 3 | ********* ********** ********** ********** ********** ********** *********/ | |
| 4 | ||
| 5 | package go v.va.med.f w.persiste nt; | |
| 6 | ||
| 7 | import jav a.io.Seria lizable; | |
| 8 | ||
| 9 | /** | |
| 10 | * Initial javadoc f or class Q ueryInfo. | |
| 11 | * | |
| 12 | * Created Sep 18, 2 006 10:33: 23 PM | |
| 13 | * | |
| 14 | * @author DNS DN S
|
|
| 15 | */ | |
| 16 | public cla ss QueryIn fo impleme nts Serial izable { | |
| 17 | /* * | |
| 18 | * An instan ce of seri alVersionU ID | |
| 19 | * / | |
| 20 | pr ivate stat ic final l ong serial VersionUID = -438086 2121153046 43L; | |
| 21 | pu blic stati c final in t DEFAULT_ FETCH_SIZE = 100; | |
| 22 | pr ivate Stri ng query; | |
| 23 | pr ivate bool ean isName dQuery = t rue; | |
| 24 | pr ivate Stri ng[] param Names; | |
| 25 | pr ivate Obje ct[] param Values; | |
| 26 | pr ivate int fetchSize = DEFAULT_ FETCH_SIZE ; | |
| 27 | ||
| 28 | pu blic Query Info() { | |
| 29 | } | |
| 30 | ||
| 31 | pu blic Query Info(Strin g queryNam e) { | |
| 32 | this .query = q ueryName; | |
| 33 | } | |
| 34 | ||
| 35 | /* * | |
| 36 | * @return R eturns the isNamedQu ery. | |
| 37 | * / | |
| 38 | pu blic boole an isNamed Query() { | |
| 39 | retu rn isNamed Query; | |
| 40 | } | |
| 41 | ||
| 42 | /* * | |
| 43 | * @param is NamedQuery | |
| 44 | * The isNa medQuery t o set. | |
| 45 | * / | |
| 46 | pu blic void setNamedQu ery(boolea n isNamedQ uery) { | |
| 47 | this .isNamedQu ery = isNa medQuery; | |
| 48 | } | |
| 49 | ||
| 50 | /* * | |
| 51 | * @return R eturns the paramName s. | |
| 52 | * / | |
| 53 | pu blic Strin g[] getPar amNames() { | |
| 54 | retu rn paramNa mes; | |
| 55 | } | |
| 56 | ||
| 57 | /* * | |
| 58 | * @param pa ramNames | |
| 59 | * The para mNames to set. | |
| 60 | * / | |
| 61 | pu blic void setParamNa mes(String [] paramNa mes) { | |
| 62 | this .paramName s = paramN ames; | |
| 63 | } | |
| 64 | ||
| 65 | /* * | |
| 66 | * @return R eturns the paramValu es. | |
| 67 | * / | |
| 68 | pu blic Objec t[] getPar amValues() { | |
| 69 | retu rn paramVa lues; | |
| 70 | } | |
| 71 | ||
| 72 | /* * | |
| 73 | * @param pa ramValues | |
| 74 | * The para mValues to set. | |
| 75 | * / | |
| 76 | pu blic void setParamVa lues(Objec t[] paramV alues) { | |
| 77 | this .paramValu es = param Values; | |
| 78 | } | |
| 79 | ||
| 80 | /* * | |
| 81 | * @return R eturns the query. | |
| 82 | * / | |
| 83 | pu blic Strin g getQuery () { | |
| 84 | retu rn query; | |
| 85 | } | |
| 86 | ||
| 87 | /* * | |
| 88 | * @param qu ery | |
| 89 | * The quer y to set. | |
| 90 | * / | |
| 91 | pu blic void setQuery(S tring quer y) { | |
| 92 | this .query = q uery; | |
| 93 | } | |
| 94 | ||
| 95 | pu blic boole an contain sParameter s() { | |
| 96 | retu rn paramNa mes != nul l && param Names.leng th > 0; | |
| 97 | } | |
| 98 | ||
| 99 | /* * | |
| 100 | * @return R eturns the fetchSize . | |
| 101 | * / | |
| 102 | pu blic int g etFetchSiz e() { | |
| 103 | retu rn fetchSi ze; | |
| 104 | } | |
| 105 | ||
| 106 | /* * | |
| 107 | * @param fe tchSize | |
| 108 | * The fetc hSize to s et. | |
| 109 | * / | |
| 110 | pu blic void setFetchSi ze(int fet chSize) { | |
| 111 | this .fetchSize = fetchSi ze; | |
| 112 | } | |
| 113 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.