I'm trying to define custom library type. Is there a documentation somewhere how to achieve that? I've tried to extend the following extension points, but without success. The new Library Type doesn't appear in the Wizard.
<extension
point="org.eclipse.jdt.core.classpathContainerInitializer">
<classpathContainerInitializer
class="test.classpath.container.ERPClasspathContainerInitializer"
id="test.classpath.container.ERPclasspathContainerInitializer">
</classpathContainerInitializer>
</extension>
<extension
point="org.eclipse.jdt.ui.classpathContainerPage">
<classpathContainerPage
class="test.classpath.container.ERPWorkbenchContainerPage"
id="test.classpath.container.ERPclasspathContainerInitializer"
name="ClasspathInit">
</classpathContainerPage>
</extension>
It would be really nice if somebody give me a guide how to achieve that! 
[Updated on: Wed, 13 March 2013 10:26] by Moderator