1 package com.bonevich.erj.model;
2
3 /***
4 *
5 * @see KeyConstraint
6 * @see UniqueKey
7 * @see PrimaryKey
8 * @see ForeignKey
9 * @author Jeffrey D. Bonevich <bonevich@telocity.com>
10 */
11 public interface KeyVisitor
12 {
13 public void visitUniqueKey(UniqueKey key);
14 public void visitPrimaryKey(PrimaryKey key);
15 public void visitForeignKey(ForeignKey key);
16 }
This page was automatically generated by Maven