Fabrik til hentescripts

Id:
org.eclipse.pde.build.fetchFactories

Fra:
3.2

Beskrivelse:
Udvidelsespunktet leverer fabrikker til konstruktion af opbevaringsstedspecifikke hentescripts under PDE-byggeprogrammets hentningsproces (Ant-opgaven eclipse.fetch).

Konfigurationskode:

<!ELEMENT extension (factory+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT factory EMPTY>

<!ATTLIST factory

id    CDATA #REQUIRED

class CDATA #REQUIRED

>

Definerer en hentefabrik, der bruges i Ant-opgaven eclipse.fetch.



Eksempler:

<extension point="org.eclipse.pde.build.fetchFactories">
    <factory
        class="org.eclipse.pde.internal.build.fetch.CVSFetchTaskFactory"
        id="CVS"/>
    <factory
        class="org.eclipse.pde.internal.build.fetch.COPYFetchTasksFactory"
        id="COPY"/>
</extension>

API-oplysninger:
Se grænsefladen org.eclipse.pde.build.IFetchFactory.

Leveret implementering:
Følgende henteopgavefabrikker stilles til rådighed af PDE-byggeprogrammet.


Copyright (c) 2004, 2006 Eclipse Foundation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: Gunnar Wagenknecht - Initial API and implementation IBM Corporation - Initial API and implementation