diff 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
line wrap: on
line diff
--- a/geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ColDefinition.java	Fri Mar 26 11:07:01 2010 +0000
+++ b/geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ColDefinition.java	Fri Mar 26 15:23:03 2010 +0000
@@ -1,17 +1,5 @@
 /**
- * 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 $
- * Source:          $Source: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/datasources/ColDefinition.java,v $
- * created by:      Stefan Blume (blume)
- * erstellt am:     21.11.2007
- * Copyright:       con terra GmbH, 2005
- *
- * modified by:     $Author: blume $
- * modified on:     $Date: 2007/12/21 12:31:15 $
- * Version:         $Revision: 1.2 $
- * TAG:             $Name:  $
- * locked from:     $Locker:  $
- * CVS State:       $State: Exp $
- * Project:         $ProjectName$
+ * 
  */
 package de.intevation.gnv.geobackend.sde.datasources;
 
@@ -19,15 +7,8 @@
 
 /**
  * The class <code>ColDefinition</code> fulfills the following purposes:
- * <ol>
- * <li></li>
- * </ol>
- *
  * @author blume
- * @version 1.0
- * @serial 1.0
- * @see
- * @since 21.11.2007 10:59:45
+ * @author Tim Englich <tim.englich@intevation.de>
  */
 public class ColDefinition {
 
@@ -71,15 +52,28 @@
     private String mName;
     private int mType;
 
+    /**
+     * Constructor
+     * @param pName the Name of an Column.
+     * @param pType the Type of an Column.
+     */
     public ColDefinition(String pName, int pType) {
         mName = pName;
         mType = pType;
     }
 
+    /**
+     * Returns the Name of an Column.
+     * @return the Name of an Column.
+     */
     public String getName() {
         return mName;
     }
 
+    /**
+     * Returns the Type of an Column.
+     * @return the Type of an Column.
+     */
     public int getType() {
         return mType;
     }

http://dive4elements.wald.intevation.org