View Javadoc
1   /**
2    * This Source Code Form is subject to the terms of the Mozilla Public
3    * License, v. 2.0. If a copy of the MPL was not distributed with this
4    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5    *
6    * If it is not possible or desirable to put the notice in a particular
7    * file, then You may include the notice in a location (such as a LICENSE
8    * file in a relevant directory) where a recipient would be likely to look
9    * for such a notice.
10   *
11   * 
12   */
13  
14  package org.miloss.fgsms.tools;
15  
16  import java.util.ArrayList;
17  import java.util.List;
18  
19  /**
20   *
21   * @author AO
22   */
23  public class Table {
24  
25      public String name;
26      public List<Column> columns = new ArrayList<Column>();
27  }