/[schmitzm]/trunk/src/skrueger/AttributeMetadataInterface.java
ViewVC logotype

Diff of /trunk/src/skrueger/AttributeMetadataInterface.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 675 by alfonx, Thu Feb 4 19:05:34 2010 UTC revision 678 by alfonx, Fri Feb 5 15:21:33 2010 UTC
# Line 77  public class AttributeMetadata implement Line 77  public class AttributeMetadata implement
77           * be set and will always be interpreted as NULL internally and will usually           * be set and will always be interpreted as NULL internally and will usually
78           * be ignored. This overcomes the problem, that           * be ignored. This overcomes the problem, that
79           **/           **/
80          protected final HashSet<Object> nodataValues = new HashSet<Object>();          protected HashSet<Object> nodataValues = new HashSet<Object>();
81    
82          /** Translation of the attribute's title **/          /** Translation of the attribute's title **/
83          protected Translation title = new Translation();          protected Translation title = new Translation();
# Line 242  public class AttributeMetadata implement Line 242  public class AttributeMetadata implement
242                  amd.setFunctionX(getFunctionX());                  amd.setFunctionX(getFunctionX());
243                  amd.setFunctionA(getFunctionA());                  amd.setFunctionA(getFunctionA());
244    
245                  for (final Object nodataValue : getNodataValues()) {                  amd.setNodataValues(getNodataValues());
                         amd.getNodataValues().add(nodataValue);  
                 }  
246    
247                  return amd;                  return amd;
248          }          }
249    
250            // only to be used by copyTo()
251            private void setNodataValues(HashSet<Object> nodataValues2) {
252                    nodataValues = nodataValues2;
253            }
254    
255          public Translation getDesc() {          public Translation getDesc() {
256                  return desc;                  return desc;
257          }          }

Legend:
Removed from v.675  
changed lines
  Added in v.678

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26