Changeset 2618
- Timestamp:
- 07/11/08 17:04:40 (3 months ago)
- Location:
- trunk/components/client/src/pojos
- Files:
-
- 2 modified
-
WellData.java (modified) (1 diff)
-
WellSampleData.java (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/client/src/pojos/WellData.java
r2617 r2618 53 53 54 54 /** Identifies the {@link Well#WELLSAMPLE} field. */ 55 public final static String WELL_SAMPLE_LINKS = Well.WELLSAMPLE;55 //public final static String WELL_SAMPLE_LINKS = Well.WELLSAMPLE; 56 56 57 57 /** -
trunk/components/client/src/pojos/WellSampleData.java
r2617 r2618 110 110 public Set getImages() 111 111 { 112 /* 112 113 if (images == null && asWellSample().sizeOfImageLinks() >= 0) { 113 114 images = new HashSet<ImageData>( … … 119 120 } 120 121 return images == null ? null : new HashSet<ImageData>(images); 122 */ 123 return null; 121 124 } 122 125 … … 131 134 public void setImages(Set<ImageData> newValue) 132 135 { 136 /* 133 137 Set<ImageData> currentValue = getImages(); 134 138 SetMutator<ImageData> … … 146 150 147 151 images = new HashSet<ImageData>(m.result()); 152 */ 148 153 } 149 154
