Examples of IPropertySource


Examples of org.eclipse.ui.views.properties.IPropertySource

    if (fSelectedEntries != null) {
      Object[] entries = fSelectedEntries;
      ISelection selection = fInput;
      boolean needsRefresh = false;
      if (selection != null && !selection.isEmpty() && selection instanceof IStructuredSelection) {
        IPropertySource source = getConfiguration().getPropertySourceProvider(this).getPropertySource(((IStructuredSelection) selection).getFirstElement());
        if (source != null && source instanceof IPropertySourceExtension) {
          for (int i = 0; i < entries.length; i++) {
            if (entries[i] instanceof IPropertySheetEntry) {
              IPropertySheetEntry entry = (IPropertySheetEntry) entries[i];
              needsRefresh = true;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.