featureTypes
확장점은 기호 유형의 ID를 사용하여 대체
기능 구현을 등록할 수 있습니다. 이 ID를 해당 유형을 사용하여 참조할 때마다 제공된 팩토리를 사용하여 정확하고
구체적인 기능 구현을 작성합니다.
<!ELEMENT extension (feature-factory+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT feature-factory EMPTY>
<!ATTLIST feature-factory
class CDATA #REQUIRED>
<extension id=
"custom"
point=
"org.eclipse.update.core.featureTypes"
name=
"Custom packaged feature"
>
<feature-factory class=
"com.xyz.update.CustomFeatureFactory"
>
</feature-factory>
</extension>
org.eclipse.update.core.IFeatureFactory
를 구현해야 합니다.
Copyright (c) 2004 IBM Corporation and others. All rights reserved. 본 프로그램 및 본 프로그램에 동봉되는 자료는 본 배포물에 동봉되는 Eclipse Public License v1.0의 조항에 따라 사용해야 하며 웹 사이트(http://www.eclipse.org/legal/epl-v10.html)에서도 관련 사항을 참조할 수 있습니다.