comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ColDefinition.java @ 884:12f88239fb33

Updated Javadocs to the Listed Classes. Also done some Codecleanup and removed unused Methods from the Code. geo-backend/trunk@842 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 26 Mar 2010 15:23:03 +0000
parents 110e3ac1b7d2
children 8b442223741c
comparison
equal deleted inserted replaced
883:6d568397740c 884:12f88239fb33
1 /** 1 /**
2 * Title: ColDefinition, $Header: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/datasources/ColDefinition.java,v 1.2 2007/12/21 12:31:15 blume Exp $ 2 *
3 * Source: $Source: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/datasources/ColDefinition.java,v $
4 * created by: Stefan Blume (blume)
5 * erstellt am: 21.11.2007
6 * Copyright: con terra GmbH, 2005
7 *
8 * modified by: $Author: blume $
9 * modified on: $Date: 2007/12/21 12:31:15 $
10 * Version: $Revision: 1.2 $
11 * TAG: $Name: $
12 * locked from: $Locker: $
13 * CVS State: $State: Exp $
14 * Project: $ProjectName$
15 */ 3 */
16 package de.intevation.gnv.geobackend.sde.datasources; 4 package de.intevation.gnv.geobackend.sde.datasources;
17 5
18 import org.apache.log4j.Logger; 6 import org.apache.log4j.Logger;
19 7
20 /** 8 /**
21 * The class <code>ColDefinition</code> fulfills the following purposes: 9 * The class <code>ColDefinition</code> fulfills the following purposes:
22 * <ol>
23 * <li></li>
24 * </ol>
25 *
26 * @author blume 10 * @author blume
27 * @version 1.0 11 * @author Tim Englich <tim.englich@intevation.de>
28 * @serial 1.0
29 * @see
30 * @since 21.11.2007 10:59:45
31 */ 12 */
32 public class ColDefinition { 13 public class ColDefinition {
33 14
34 /** 15 /**
35 * Default Logging instance 16 * Default Logging instance
69 public static final int NCLOB = 15; 50 public static final int NCLOB = 15;
70 51
71 private String mName; 52 private String mName;
72 private int mType; 53 private int mType;
73 54
55 /**
56 * Constructor
57 * @param pName the Name of an Column.
58 * @param pType the Type of an Column.
59 */
74 public ColDefinition(String pName, int pType) { 60 public ColDefinition(String pName, int pType) {
75 mName = pName; 61 mName = pName;
76 mType = pType; 62 mType = pType;
77 } 63 }
78 64
65 /**
66 * Returns the Name of an Column.
67 * @return the Name of an Column.
68 */
79 public String getName() { 69 public String getName() {
80 return mName; 70 return mName;
81 } 71 }
82 72
73 /**
74 * Returns the Type of an Column.
75 * @return the Type of an Column.
76 */
83 public int getType() { 77 public int getType() {
84 return mType; 78 return mType;
85 } 79 }
86 } 80 }

http://dive4elements.wald.intevation.org