Package com.googlecode.goclipse.ui.navigator.elements

Examples of com.googlecode.goclipse.ui.navigator.elements.GoPathElement


  @Override
  public Object[] getChildren(Object parentElement) {
    if (parentElement instanceof IProject) {
      return getProjectChildren((IProject) parentElement);
    } else if (parentElement instanceof GoPathElement) {
      GoPathElement pathElement = (GoPathElement) parentElement;
     
      try {
        IFileStore fileStore = EFS.getStore(pathElement.getDirectory().toURI());
       
        return fileStore.childStores(EFS.NONE, null);
      } catch (CoreException exception) {
        return NO_CHILDREN;
      }
View Full Code Here

TOP

Related Classes of com.googlecode.goclipse.ui.navigator.elements.GoPathElement

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.