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.Column;
10  
11  /***
12   * @author akima
13   */
14  public class CheckNameOfColumn extends CheckName {
15  
16      public static final String OPTION_PROPERTY = "maxColumnNameLength";
17  
18      public void visit(Column column) {
19          check(column, OPTION_PROPERTY);
20      }
21  }