IFolderLayout playerListFolder = layout.createFolder("PlayerListFolder", IPageLayout.LEFT, 0.25f, editorArea);
playerListFolder.addView(PlayerListView.VIEW_ID);
layout.getViewLayout(PlayerListView.VIEW_ID).setCloseable(false);
IFolderLayout chatFolder = layout.createFolder("ChatFolder", IPageLayout.TOP, 0.5f, editorArea);
chatFolder.addView(ChatView.VIEW_ID);
layout.getViewLayout(ChatView.VIEW_ID).setCloseable(false);
IFolderLayout gameListFolder = layout.createFolder("GameListFolder", IPageLayout.TOP, 0.5f, editorArea);
gameListFolder.addView(ClientConsoleView.VIEW_ID);
gameListFolder.addView(GameListView.VIEW_ID);