View Javadoc

1   /*
2    * joey-gen and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/08/15 18:00:19
6    */
7   package org.asyrinx.joey.gen.command.rdb;
8   
9   import org.asyrinx.joey.gen.model.rdb.Table;
10  
11  /***
12   * @author akima
13   */
14  public class CheckNameOfTable extends CheckName {
15  
16      public static final String OPTION_PROPERTY = "maxTableNameLength";
17  
18      public void visit(Table table) {
19          check(table, OPTION_PROPERTY);
20      }
21  
22  }