How does Eclipse generate the Plugin Specified Entries in the XML catalog? -


i eclipse plug-in specify xsd file eclipse can added catalog.

the org.eclipse.wst.xml.core.catalogcontributions extension point lets add catalog (this requires have web tools (wst) component of eclipse installed).

for example org.eclipse.wst.xsd.core plugin adds this:

<extension     point="org.eclipse.wst.xml.core.catalogcontributions">     <catalogcontribution id="default">         <uri              name="http://www.w3.org/2001/xmlschema"              uri="platform:/plugin/org.eclipse.xsd/cache/www.w3.org/2001/xmlschema.xsd" />         <system              systemid="http://www.w3.org/2001/xml.xsd"              uri="platform:/plugin/org.eclipse.xsd/cache/www.w3.org/2001/xml.xsd"/>                 </catalogcontribution> </extension> 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -