Tuesday, August 17, 2010

Closing Editors

IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IEditorReference[] editors = page.getEditorReferences();
for (int i = 0; i < editors.length; i++) {
IEditorInput otherInput;
try {
otherInput = editors[i].getEditorInput();
return page.closeEditor(editors[i].getEditor(false), false);
} catch (PartInitException e) {
handleException(e);
}
}

Reset Perspective

PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().resetPerspective();

Tuesday, August 10, 2010

Agile - Scrum - Sprint

Working in an agile manner, AGILE meaning Mentally Quick (an agile mind)... is a different experience, where you would require to quantify your tasks.

Understand your tasks
Break them into granular pieces
Estimating them

lotto learn to work as a SCRUM developer... :)