<!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>
eclipse.fetch Ant タスク内で使用される取り出しファクトリーを定義します。
org.eclipse.pde.build.IFetchFactory
を実装する必要があります。
<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>
org.eclipse.pde.build.IFetchFactory
インターフェースを参照してください。
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