1 /* 2 * Copyright (c) 2003-2004, Inversoft, All Rights Reserved 3 * 4 * This software is distribuable under the GNU Lesser General Public License. 5 * For more information visit gnu.org. 6 */ 7 package com.inversoft.savant; 8 9 10 /** 11 * <p> 12 * This interface defines the method that is called to build 13 * a local project. 14 * </p> 15 * 16 * @author Brian Pontarelli 17 */ 18 public interface LocalProjectBuilder { 19 20 /** 21 * Builds the given LocalProject. 22 */ 23 void build(LocalProject project) throws SavantException; 24 } 25