Package com.intellij.openapi.actionSystem

Examples of com.intellij.openapi.actionSystem.TypeSafeDataProvider


    return ElementPresentationManager.getIcon(persistentAttribute);
  }

  @NotNull
  public TypeSafeDataProvider createDataProvider(final PersistenceDiagram<PersistencePackage, PersistentObject, PersistentAttribute> diagram) {
    return new TypeSafeDataProvider() {
      public void calcData(final DataKey key, final DataSink sink) {
        getData(diagram, key, sink);
      }
    };
  }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.actionSystem.TypeSafeDataProvider

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.