/* * Created on Apr 18, 2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package fr.lifl.stc.stan.link; /** * @author dorina * * Factory to generate links */ public interface LinkFactory { public Link createLink(); public Link createLink(byte b); public Link createLink(int from, int to, int linkType); public Link createLink(int fromPart, int fromType, int toPart, int toType); public Link[][]createTableLink(int n, int m); }