1 package com.calipso.reportgenerator.userinterface; 2 import com.calipso.reportgenerator.reportdefinitions.types.DimensionDefinitionOrderType; 3 4 import java.util.Set ; 5 import java.util.TreeSet ; 6 9 public class ColumnProperties { 10 private int width; 11 private String columnName; 12 private Set excludeValue; 13 private DimensionDefinitionOrderType order; 14 private String location; 15 private int ubication; 16 private String rankMetricName; 17 18 19 23 public int getUbication() { 24 return ubication; 25 } 26 27 31 public void setUbication(int ubication) { 32 this.ubication = ubication; 33 } 34 35 39 public DimensionDefinitionOrderType getOrder() { 40 return order; 41 } 42 43 47 public void setOrder(DimensionDefinitionOrderType order) { 48 this.order = order; 49 } 50 51 55 public String getLocation() { 56 return location; 57 } 58 59 63 public void setLocation(String location) { 64 this.location = location; 65 } 66 67 70 public ColumnProperties() { 71 excludeValue = new TreeSet (); 72 } 73 74 78 public Set getExcludeValue() { 79 return excludeValue; 80 } 81 82 86 public void setExcludeValue(Set set) { 87 this.excludeValue = set; 88 } 89 90 94 public int getWidth() { 95 return width; 96 } 97 98 102 public void setWidth(int width) { 103 this.width = width; 104 } 105 106 110 public String getColumnName() { 111 return columnName; 112 } 113 114 118 public void setColumnName(String columnName) { 119 this.columnName = columnName; 120 } 121 122 126 public String getRankMetricName() { 127 return rankMetricName; 128 } 129 133 134 public void setRankMetricName(String rankMetricName) { 135 this.rankMetricName = rankMetricName; 136 } 137 } 138 | Popular Tags |