<feature> <install-handler>
), uden at der skal inkluderes en kopi af behandlerkoden som en del af den funktion, der kan overføres.
<!ELEMENT extension (install-handler+)>
<!ATTLIST-udvidelse
point CDATA #REQUIRED
id CDATA #IMPLIED
navn CDATA #IMPLIED>
<!ELEMENT install-handler EMPTY>
<!ATTLIST install-handler
class CDATA #REQUIRED>
<extension id=
"custom"
point=
"org.eclipse.update.core.installHandlers"
name=
"Tilpasset installationsbehandler"
>
<install-handler class=
"com.xyz.update.CustomInstallHandler"
>
</install-handler>
</extension>
org.eclipse.update.core.IInstallHandler
.
Den, der implementerer udvidelsespunktet, skal udvide basisklassen org.eclipse.update.core.BaseInstallHandler
.
org.eclipse.update.core.DefaultInstallHandler
. Hvis den bruges, kopierer den dataindgange fra funktionen, der ikke hører til plugin'en, til funktionens installationsbibliotek.
Copyright (c) 2004 IBM Corporation 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.