public void getState(final PomFileEditorState pState) {
pState.setSelectedTabIndex(tabs.getSelectedIndex());
final Component component = tabs.getSelectedComponent();
if (component instanceof PomFileEditorStateHandler) {
PomFileEditorStateHandler handler = (PomFileEditorStateHandler) component;
handler.getState(pState);
}
}