List of usage examples for org.springframework.ide.eclipse.ui SpringUIUtils openInEditor
public static IEditorPart openInEditor(IEditorInput input, String editorId)
From source file:org.eclipse.virgo.ide.runtime.internal.ui.actions.OpenManifestAction.java
private void openResource(IResource resource) { if (resource instanceof IFile) { SpringUIUtils.openInEditor((IFile) resource, -1); } }