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