Package org.springframework.ide.eclipse.beans.ui.editor.outline

Examples of org.springframework.ide.eclipse.beans.ui.editor.outline.BeansJFaceNodeAdapterFactory


    FactoryRegistry factoryRegistry = structuredModel.getFactoryRegistry();
    Assert.notNull(factoryRegistry, "No factory registered");
    INodeAdapterFactory factory = factoryRegistry
        .getFactoryFor(IJFaceNodeAdapter.class);
    if (factory == null) {
      factory = new BeansJFaceNodeAdapterFactory();
      factoryRegistry.addFactory(factory);
    }

    // Stuff from super method (inferred grammar support)
    if (structuredModel != null) {
View Full Code Here


  protected void addContentBasedFactories(IStructuredModel structuredModel) {
    FactoryRegistry factoryRegistry = structuredModel.getFactoryRegistry();
    Assert.notNull(factoryRegistry, "No factory registered");
    INodeAdapterFactory factory = factoryRegistry.getFactoryFor(IJFaceNodeAdapter.class);
    if (factory == null) {
      factory = new BeansJFaceNodeAdapterFactory();
      factoryRegistry.addFactory(factory);
    }

    // Stuff from super method (inferred grammar support)
    if (structuredModel != null) {
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.editor.outline.BeansJFaceNodeAdapterFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.