use of org.eclipse.che.ide.api.constraints.Constraints in project che by eclipse.
the class SplitVerticallyAction method actionPerformed.
/** {@inheritDoc} */
@Override
public void actionPerformed(ActionEvent event) {
final String tabId = getEditorTab(event).getId();
final VirtualFile file = getEditorFile(event);
final Constraints constraints = new Constraints(VERTICALLY, tabId);
editorAgent.openEditor(file, constraints);
}
Aggregations