/*
* Method for getting the selected agent file
*/
private IFile getSelectedAgentFile(){
if(_selection instanceof TreeSelection){
Child selectedChild = (Child)((TreeSelection)_selection).getFirstElement();
return selectedChild.getContainer();
}
else{
System.out.println(_selection.getClass());
}
return null;