Module Types

Identifier:
org.eclipse.wst.server.core.moduleTypes

Since:
1.0

Description:
This extension point is used to provide a new module type.

Configuration Markup:

<!ELEMENT extension (moduleType+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT moduleType EMPTY>

<!ATTLIST moduleType

id   CDATA #REQUIRED

name CDATA #REQUIRED>


Examples:
The following is an example of a module type extension point:

   <extension 
         point="org.eclipse.wst.server.core.moduleTypes">
      <moduleType
            id="com.example"
            name="%moduleTypeName"
            description="%moduleTypeDescription"/>
   </extension>


Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/