Package es.upm.dit.gsi.eclipse.jadex.navigator

Examples of es.upm.dit.gsi.eclipse.jadex.navigator.SubChild


  }
 
 
  private SubChild getSelectedSubChild(){
    if(_selection instanceof TreeSelection){   
      SubChild selectedSubChild = (SubChild)((TreeSelection)_selection).getFirstElement();
      return  selectedSubChild;
    }
    return null;
  }
View Full Code Here


    }
    return null;
  }
 
  private IFile getSelectedSubChildAgentFile(){
    SubChild s = getSelectedSubChild();
    if(s != null){
      return s.getContainer().getContainer();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of es.upm.dit.gsi.eclipse.jadex.navigator.SubChild

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.