View Javadoc
1   /*
2    * Copyright (c) 2002-2017, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.adminsql.business;
35  
36  
37  /**
38   * Creates a new instance of Table
39   */
40  public class Table
41  {
42      /** Creates a new instance of Table */
43  
44      // Variables declarations 
45      private String _strTableName;
46      private String _strComment;
47      private String _strPrimaryKey;
48      private String _strIndex;
49      private int _nNumberOfFields;
50  
51      /**
52       * Gets the name of the table
53       * @return the name of the table
54       */
55      public String getTableName(  )
56      {
57          return _strTableName;
58      }
59  
60      /**
61       * Sets the name of the table
62       * @param strTableName the name of the table
63       */
64      public void setTableName( String strTableName )
65      {
66          _strTableName = strTableName;
67      }
68  
69      public void setFieldName( String strFieldName )
70      {
71          
72      }
73  
74      public void setFieldNull( String strFieldName )
75      {
76  
77      }
78      /**
79       * Gets some comments
80       * @return comments on table
81       */
82      public String getComment(  )
83      {
84          return _strComment;
85      }
86  
87      /**
88       * Sets comments on a table
89       * @param strComment comments on a table
90       */
91      public void setComment( String strComment )
92      {
93          _strComment = strComment;
94      }
95  
96      /**
97       * Returns the PrimaryKey
98       * @return The PrimaryKey
99       */
100     public String getPrimaryKey(  )
101     {
102         return _strPrimaryKey;
103     }
104 
105     /**
106      * Sets the PrimaryKey
107      * @param strPrimaryKey The PrimaryKey
108      */
109     public void setPrimaryKey( String strPrimaryKey )
110     {
111         _strPrimaryKey = strPrimaryKey;
112     }
113 
114     /**
115      * Returns the Index
116      * @return The Index
117      */
118     public String getIndex(  )
119     {
120         return _strIndex;
121     }
122 
123     /**
124      * Sets the Index
125      * @param strIndex The Index
126      */
127     public void setIndex( String strIndex )
128     {
129         _strIndex = strIndex;
130     }
131 
132     /**
133      * Gets number of fields of the table
134      * @return the number of fields
135      */
136     public int getNumberOfFields(  )
137     {
138         return _nNumberOfFields;
139     }
140 
141     /**
142      * Sets the number of fields
143      * @param nNumberOfFields the number of fields
144      */
145     public void setNumberOfFields( int nNumberOfFields )
146     {
147         _nNumberOfFields = nNumberOfFields;
148     }
149 }