91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Eclipse中perspective的使用方法有哪些

發布時間:2021-07-13 15:24:28 來源:億速云 閱讀:280 作者:chen 欄目:編程語言

這篇文章主要介紹“Eclipse中perspective的使用方法有哪些”,在日常操作中,相信很多人在Eclipse中perspective的使用方法有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Eclipse中perspective的使用方法有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

這里要介紹的是如何給你的RCP程序或Eclipse插件定義透視圖,并向透視圖中添加視圖及對各視圖間的擺放位置給出定義。 好,進入正題,給我們的插件定義一個透視圖先:定義透視圖的方法相信很多人都比較清楚,要擴展org.eclipse.ui.perspectives擴展點,好,直接在我們的plugin.xml文件中加入下面一句代碼就ok了:

﹤extension point="org.eclipse.ui.perspectives">      

﹤perspective

class="com.test.blog.core.ui.perspective.Perspective"

icon="icons/amc_perspect.gif"

id="com.test.blog.core.ui.perspective.Perspective"

name="%perspective.amc">

﹤/perspective>

﹤/extension>


上面的代碼中,表明我們的透視圖id為org.talend.amc.plugin.Perspective,好,記住這個id。下面我們就要向這個透視圖中來添加我們的view(視圖)了。有兩種方法都可以實現視圖的添加,一種是通過代碼直接添加,另外一種方法則是直接就在plugin.xml里進行配置:

通過代碼向已知透視圖中添加視圖并布局
上面的代碼中已指出該perspective所對應的類為org.talend.amc.plugin.Perspective,該類需要實現IPerspectiveFactory接口,并實現它的createInitialLayout(IPageLayout layout) 方法,createInitialLayout(IPageLayout layout) 方法就能夠實現對perspective中view的布局,詳細代碼如下:

package com.test.blog.core.ui.perspective;

import org.eclipse.ui.IFolderLayout;

import org.eclipse.ui.IPageLayout;

import org.eclipse.ui.IPerspectiveFactory; 

import com.test.blog.core.ui.views.detaillog.DetailLogsView;  import com.test.blog.core.ui.views.jobinfo.JobInformationView; import com.test.blog.core.ui.views.statinfo.DetailStatsView; import com.test.blog.core.ui.views.statinfo.SimpleStatsView;

/** *//**  * The class define for the test blog perspective. ﹤br/>  *   * $Id: Perspective.java,v 1.9 2007/03/23 07:48:54 pub Exp $  *   */ public class Perspective implements IPerspectiveFactory ...{           public static final String ID = "com.test.blog.core.ui.perspective.Perspective"; //$NON-NLS-1$          public void createInitialLayout(IPageLayout layout) ...{           //這里不需要顯示editor,故而設置為不可見         layout.setEditorAreaVisible(false);         String editorArea = layout.getEditorArea();          //下面給出的是各view的位置布局定義,這些代碼都可以直接在plugin.xml進行配置,可以達到相同效果         layout.addView(JobInformationView.ID, IPageLayout.LEFT, 0.45f, editorArea);         layout.addView(DetailLogsView.ID, IPageLayout.BOTTOM, 0.4f, editorArea);                  String logInfoFolderID = "position.statlog";         IFolderLayout bottomFolder = layout.createFolder(logInfoFolderID, IPageLayout.BOTTOM, 0.5f,                 JobInformationView.ID);         bottomFolder.addView(SimpleStatsView.ID);         bottomFolder.addView(DetailStatsView.ID);         layout.getViewLayout(JobInformationView.ID).setCloseable(false);         layout.getViewLayout(SimpleStatsView.ID).setCloseable(false);         layout.getViewLayout(DetailStatsView.ID).setCloseable(false);     }  }


這里只是在代碼中直接使用view id, 如果真要讓這些id所對應的view顯示出來,當然還需要你在自己的插件中給出這些view id的定義。

在plugin.xml中直接添加視圖并配置布局

Eclipse 為各個view在透視圖的布局也提供了專用的擴展點,它就是org.eclipse.ui.perspectiveExtensions,利用這個擴展點,我們甚至不需要對org.talend.amc.plugin.Perspective類進行任何修改,就可以按我們的要求向perspective中添加新的視圖(view), 比如要達到上面同效果的視圖布局,可向plugin.xml中添加以下配置代碼:

﹤extension point="org.eclipse.ui.perspectiveExtensions">

﹤perspectiveExtension    

targetID="com.test.blog.core.ui.perspective.Perspective">            

﹤view

id="com.test.blog.core.ui.views.jobinfo.JobInformationView"

relative="org.eclipse.ui.editorss"            

relationship="left"            

ratio="0.45"            

closeable="false"/>

﹤view

id="com.test.blog.core.ui.views.detaillog.DetailLogsView"

relative="org.eclipse.ui.editorss"

relationship="bottom"

ratio="0.4"/>

﹤view

id="com.test.blog.core.ui.views.statinfo.SimpleStatsView"

relative="com.test.blog.core.ui.views.jobinfo.JobInformationView"

relationship="bottom"

ratio="0.5"

closeable="false"/>

﹤view

id="com.test.blog.core.ui.views.statinfo.DetailStatsView"

relative="com.test.blog.core.ui.views.statinfo.SimpleStatsView"

relationship="stack"

closeable="false"/>

﹤/perspectiveExtension>

﹤/extension>


運行后,各view間的布局關系如下圖所示:

Eclipse中perspective的使用方法有哪些

Eclipse的幫助文件中已對該擴展點進行了詳細的說明,在Eclipse的幫助中直接搜索‘org.eclipse.ui.perspectiveExtensions’,即可得知該擴展點的相關信息。

到此,關于“Eclipse中perspective的使用方法有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

秦安县| 萨迦县| 泗水县| 旬邑县| 大厂| 郑州市| 开江县| 庐江县| 新乡市| 阳曲县| 方城县| 山阳县| 长海县| 南雄市| 腾冲县| 磐石市| 平顶山市| 南木林县| 潞城市| 来安县| 屏南县| 海阳市| 喜德县| 甘孜县| 临高县| 威宁| 晴隆县| 南澳县| 石楼县| 天津市| 永寿县| 阿拉善右旗| 榆林市| 眉山市| 依兰县| 田东县| 太湖县| 张家界市| 阿鲁科尔沁旗| 石家庄市| 察隅县|