package net.sourceforge.phpdt.sql.perspective;
-import net.sourceforge.phpdt.sql.view.PHPSourceConsole;
-
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
+import net.sourceforge.phpdt.sql.view.PHPSourceConsole;
+
/**
* @author root
*
layout.setEditorAreaVisible(false);
IFolderLayout side =
layout.createFolder(
- "side",
+ "side", //$NON-NLS-1$
IPageLayout.LEFT,
0.33F,
layout.getEditorArea());
- side.addView("net.sourceforge.phpdt.sql.view.bookmarkview");
- side.addView("net.sourceforge.phpdt.sql.view.queryhistoryview");
- layout.addView("net.sourceforge.phpdt.sql.view.sqlqueryview", IPageLayout.TOP, 0.33F, layout.getEditorArea());
+ side.addView("net.sourceforge.phpdt.sql.view.bookmarkview"); //$NON-NLS-1$
+ side.addView("net.sourceforge.phpdt.sql.view.queryhistoryview"); //$NON-NLS-1$
+ layout.addView("net.sourceforge.phpdt.sql.view.sqlqueryview", IPageLayout.TOP, 0.33F, layout.getEditorArea()); //$NON-NLS-1$
IFolderLayout bottomRight =
layout.createFolder(
- "bottomRight",
+ "bottomRight", //$NON-NLS-1$
IPageLayout.LEFT,
0.33F,
layout.getEditorArea());
- bottomRight.addView("net.sourceforge.phpdt.sql.view.tableview");
- bottomRight.addView("net.sourceforge.phpdt.sql.view.logview");
- // bottomRight.addView(PHPSourceConsole.CONSOLE_ID);
+ bottomRight.addView("net.sourceforge.phpdt.sql.view.tableview"); //$NON-NLS-1$
+ bottomRight.addView("net.sourceforge.phpdt.sql.view.logview"); //$NON-NLS-1$
+ bottomRight.addView(PHPSourceConsole.CONSOLE_ID);
}
}