我創建一個視圖的RCP應用程序模板 完全佔據最初創建的項目我的角度來看類看起來像這樣如何使一個自定義視圖中的透視RCP應用程序中
import org.eclipse.ui.IPageLayout;
public class Perspective implements IPerspectiveFactory {
public void createInitialLayout(IPageLayout layout) {
layout.setEditorAreaVisible(false);
layout.setFixed(true);
}
}
我後已經創建了一個新視圖,並添加到名爲ErrorView的org.eclipse.ui.views擴展中,並生成了該視圖的相應類。 我做了一個小的變化透視類
public class Perspective implements IPerspectiveFactory {
private URL u;
private HttpURLConnection huc;
public void createInitialLayout(IPageLayout layout) {
try{
u= new URL("https://google.com/");
huc = (HttpURLConnection)u.openConnection();
huc.setRequestMethod("GET");
huc.connect();
if(huc.getResponseCode()==200){
layout.setEditorAreaVisible(false);
layout.setFixed(true);
}
else{
layout.addStandaloneView(View1.ID, true, IPageLayout.LEFT, 1.0f, layout.getEditorArea());
layout.getViewLayout(View1.ID).setCloseable(false);
layout.setEditorAreaVisible(false);
}
}
catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
layout.addStandaloneView(View1.ID, true, IPageLayout.LEFT, 1.0f, layout.getEditorArea());
layout.getViewLayout(View1.ID).setCloseable(false);
layout.setEditorAreaVisible(false);
}
}
}
肯定別人/ catch塊被執行
我怎樣才能讓ErrorView佔據整個角度,而不顯示基礎視圖或簡單地隱藏了基(默認視圖)完全。
「IPerspectiveFactory」類僅執行一次,以在第一次打開透視圖時定義佈局。之後不會運行,因爲佈局已經知道了。你想要什麼行爲?這是一個啓動行爲(就像你重新啓動,編輯器打開,但谷歌不會給你的信息)? –
@Paul Webster 更準確地說,我希望完全顯示單獨的erroview,而不是加載默認視圖(上圖中右側部分)的視角。是的,這是一個有點啓動行爲之前,一個視圖顯示我想顯示除默認視圖以外的任何視圖(通過使用eclipse rcp **視圖模板**創建)。希望你明白保羅,我準備好詳細說明問題 – srk