Package org.eclipse.ui.internal.registry

Examples of org.eclipse.ui.internal.registry.ViewDescriptor


  public ViewReference(ViewFactory factory, String id, String secondaryId,
      IMemento memento) {
    super();
    this.memento = memento;
    this.factory = factory;
    ViewDescriptor desc = (ViewDescriptor) this.factory.viewReg.find(id);
    ImageDescriptor iDesc = null;
    String title = null;
    if (desc != null) {
      iDesc = desc.getImageDescriptor();
      title = desc.getLabel();
    }

    String name = null;

    if (memento != null) {
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.registry.ViewDescriptor

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.