Index: LutinGeneratorEclipsePlugin/src/org/codelutin/eclipse/generator/core/builder/LutinGeneratorBuilder.java diff -u /dev/null LutinGeneratorEclipsePlugin/src/org/codelutin/eclipse/generator/core/builder/LutinGeneratorBuilder.java:1.1 --- /dev/null Wed Jun 20 12:40:40 2007 +++ LutinGeneratorEclipsePlugin/src/org/codelutin/eclipse/generator/core/builder/LutinGeneratorBuilder.java Wed Jun 20 12:40:34 2007 @@ -0,0 +1,48 @@ +/* *##% + * Copyright (C) 2007 Code Lutin + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *##%*/ + +package org.codelutin.eclipse.generator.core.builder; + +import java.util.Map; + +import org.eclipse.core.resources.IProject; +import org.eclipse.core.resources.IncrementalProjectBuilder; +import org.eclipse.core.runtime.CoreException; +import org.eclipse.core.runtime.IProgressMonitor; + +/** + * LutinGeneratorBuilder.java + * + * doc : http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/resAdv_builders.htm + * @author chatellier + * @version $Revision: 1.1 $ + * + * @deprecated Essai non concluant de compilation en utilisant lutinprocessor + * + * Last update : $Date: 2007/06/20 12:40:34 $ + * By : $Author: chatellier $ + */ +public class LutinGeneratorBuilder extends IncrementalProjectBuilder { + + protected IProject[] build(int kind, Map ignored, IProgressMonitor monitor) throws CoreException { + + System.out.println("build(int,Map,IProgressMonitor) Called..."); + + return new IProject[0]; + } +}