简体   繁体   中英

How to make deleted items in "show view" invisible in Eclipse RCP?

I'm creating a web development framework with Eclipse RCP.

I did not need the view I made, so I removed the code below and the icon image from plugin.xml.

    <extension point="org.eclipse.ui.views">
        <view
            category="..."
            name="..."
            icon="..."
            class="..."
            id="..."
            >
    </extension>

By the way, I see the removed item in "show view". The icon shows a red square.

How do I remove it?

Enable the "Clear the configuration area before launching" checkbox in your launch configuration. plugin.xml contents are cached otherwise.

启动配置对话框的配置选项卡

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM