1 /* 2 * joey-gen and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2004/12/27 17:55:42 6 */ 7 package org.asyrinx.joey.gen.model.pattern; 8 9 import org.asyrinx.joey.gen.model.rdb.TablePattern; 10 11 /*** 12 * @author takeshi 13 */ 14 public interface Pattern { 15 void expand(TablePattern tablePattern); 16 17 /*** 18 * @param templatePath 19 * @return 20 */ 21 boolean isTarget(String templatePath); 22 23 }