1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
class="MaView1"
id="maVue1"
name="Vue1">
</view>
<view
allowMultiple="true"
class="MaView2"
id="maVue2"
name="Vue2"
restorable="false">
</view>
<view
allowMultiple="false"
class="MaView3"
id="maVue3"
name="Vue3">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="*">
<view
closeable="false"
id="maVue1"
minimized="false"
moveable="false"
ratio="0.55"
relationship="right"
relative="org.eclipse.ui.views.TaskList"
showTitle="false"
standalone="false"
visible="true">
</view>
<view
closeable="false"
id="maVue2"
minimized="false"
moveable="false"
relationship="left"
relative="maVue1"
showTitle="false"
standalone="true"
visible="false">
</view>
<view
closeable="false"
id="maVue3"
minimized="false"
moveable="false"
ratio="0.70"
relationship="bottom"
relative="maVue1"
showTitle="false"
standalone="false"
visible="true">
</view>
</perspectiveExtension>
</extension>
</plugin> |
Partager