01: /*******************************************************************************
02: * Copyright (c) 2005, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM - Initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.build.packager;
11:
12: import java.util.*;
13:
14: import org.eclipse.core.runtime.CoreException;
15: import org.eclipse.pde.internal.build.AssemblyInformation;
16: import org.eclipse.pde.internal.build.Config;
17:
18: public class DeltaPackScriptGenerator extends PackageScriptGenerator {
19: public DeltaPackScriptGenerator(String directory,
20: AssemblyInformation assemblageInformation, String featureId)
21: throws CoreException {
22: super (directory, assemblageInformation, featureId);
23: groupConfigs = true;
24: }
25:
26: protected void basicGenerateAssembleConfigFileTargetCall(
27: Config aConfig, Collection binaryPlugins,
28: Collection binaryFeatures, Collection allFeatures,
29: Collection rootFiles) throws CoreException {
30: super .basicGenerateAssembleConfigFileTargetCall(new Config(
31: "delta", "delta", "delta"), binaryPlugins,
32: binaryFeatures, allFeatures, rootFiles);
33: }
34: }
|