/[schmitzm]/branches/2.2.x/src/skrueger/AttributeMetadataInterface.java
ViewVC logotype

Contents of /branches/2.2.x/src/skrueger/AttributeMetadataInterface.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 320 - (show annotations)
Wed Aug 26 13:49:19 2009 UTC (15 years, 6 months ago) by mojays
Original Path: branches/1.0-gt2-2.6/src/skrueger/AttributeMetaData.java
File size: 3691 byte(s)
imports organized
migration package gtmig.* for classes no longer included in gt2-2.6
MouseSelectionTracker taken from gt 2.4.5
1 /*******************************************************************************
2 * Copyright (c) 2009 Martin O. J. Schmitz.
3 *
4 * This file is part of the SCHMITZM library - a collection of utility
5 * classes based on Java 1.6, focusing (not only) on Java Swing
6 * and the Geotools library.
7 *
8 * The SCHMITZM project is hosted at:
9 * http://wald.intevation.org/projects/schmitzm/
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 3
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License (license.txt)
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * or try this link: http://www.gnu.org/licenses/lgpl.html
25 *
26 * Contributors:
27 * Martin O. J. Schmitz - initial API and implementation
28 * Stefan A. Krüger - additional utility classes
29 ******************************************************************************/
30 package skrueger;
31
32 import org.apache.log4j.Logger;
33
34 import skrueger.i8n.Translation;
35
36 /**
37 * This class holds meta information about an attribute/column. This
38 * information is used by {@link StyledLayerInterface}.
39 *
40 * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>
41 */
42 public class AttributeMetaData {
43 static private final Logger LOGGER = Logger
44 .getLogger(AttributeMetaData.class);
45 protected Translation title = new Translation();
46 protected Translation desc = new Translation();
47 protected boolean visible = false;
48 protected String unit = "";
49 protected int colIdx;
50
51 /**
52 * Creates an {@link AttributeMetaData} object with the following information
53 * @param colIdx The column index of this attribute in the underlying table/dbf/etc...
54 * @param visible Shall this attribute be displayed or hidden from the user?
55 * @param title {@link Translation} for Name
56 * @param desc {@link Translation} for an attribute description
57 * @param unit {@link String} of the unit that the information is in
58 */
59 public AttributeMetaData(final int colIdx, final Boolean visible,
60 final Translation title, final Translation desc, final String unit) {
61
62 this.colIdx = colIdx;
63 this.title = title;
64 this.desc = desc;
65 if (colIdx == 0){
66 // The first attribute is THE_GEOM and shall never be visible!
67 this.visible = false;
68 }else
69 this.visible = visible;
70 this.unit = unit;
71 }
72
73 /**
74 * Creates a new visible {@link AttributeMetaData} with default (no) values.
75 */
76 public AttributeMetaData(final Integer col, final String defaultName) {
77 this(col, true, new Translation(defaultName), new Translation(), "");
78 }
79
80 public Boolean isVisible() {
81 return visible;
82 }
83
84 public void setVisible(final Boolean visible) {
85 this.visible = visible;
86 }
87
88 /** @return the index of this attribute in the underlying table/dbf **/
89 public int getColIdx() {
90 return colIdx;
91 }
92
93 public Translation getTitle() {
94 return title;
95 }
96
97 public void setTitle(final Translation title) {
98 this.title = title;
99 }
100
101 public Translation getDesc() {
102 return desc;
103 }
104
105 public void setDesc(final Translation desc) {
106 this.desc = desc;
107 }
108
109 public String getUnit() {
110 return unit;
111 }
112
113 public void setUnit(final String unit) {
114 this.unit = unit;
115 }
116 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26