Package org.eclipse.egit.core.internal.FileChecker

Examples of org.eclipse.egit.core.internal.FileChecker.CheckResultEntry


      conflictList.setLabelProvider(new LabelProvider() {
        @Override
        public String getText(Object element) {
          String path = (String) element;
          if (checkResult != null && !checkResult.isOk()) {
            CheckResultEntry entry = checkResult.getEntry(path);
            if (entry != null) {
              if (!entry.inWorkspace)
                return UIText.RebaseResultDialog_notInWorkspace + SPACE + path;
              if (!entry.shared)
                return UIText.RebaseResultDialog_notShared + SPACE + path;
View Full Code Here

TOP

Related Classes of org.eclipse.egit.core.internal.FileChecker.CheckResultEntry

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.