|
From: <bea...@us...> - 2006-09-19 17:52:04
|
Revision: 203
http://svn.sourceforge.net/cishell/?rev=203&view=rev
Author: bearsfan
Date: 2006-09-19 10:51:54 -0700 (Tue, 19 Sep 2006)
Log Message:
-----------
Set up a brand for the data manager view
Modified Paths:
--------------
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml
Added Paths:
-----------
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/datamanager_icon.gif
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/network.png
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/table.png
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/tree.png
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/unknown.png
trunk/clients/gui/org.cishell.reference.gui.brand.cishell/src/org/cishell/reference/gui/brand/cishell/DataManagerView.java
Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF
===================================================================
--- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-09-19 17:48:09 UTC (rev 202)
+++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-09-19 17:51:54 UTC (rev 203)
@@ -12,3 +12,4 @@
org.cishell.reference.gui.workspace,
org.cishell.reference.gui.menumanager
Eclipse-LazyStart: true
+Import-Package: org.cishell.app.service.datamanager
Copied: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/datamanager_icon.gif (from rev 173, trunk/clients/gui/org.cishell.reference.gui.datamanager/icons/datamanager_icon.gif)
===================================================================
(Binary files differ)
Property changes on: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/datamanager_icon.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/network.png
===================================================================
(Binary files differ)
Property changes on: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/network.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/table.png
===================================================================
(Binary files differ)
Property changes on: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/table.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/tree.png
===================================================================
(Binary files differ)
Property changes on: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/tree.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/unknown.png
===================================================================
(Binary files differ)
Property changes on: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/unknown.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml
===================================================================
--- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml 2006-09-19 17:48:09 UTC (rev 202)
+++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml 2006-09-19 17:51:54 UTC (rev 203)
@@ -19,6 +19,17 @@
value="0,163,500,10"/>
</product>
</extension>
+
+ <extension
+ point="org.eclipse.ui.views">
+ <view
+ allowMultiple="false"
+ class="org.cishell.reference.gui.brand.cishell.DataManagerView"
+ icon="icons/datamanager_icon.gif"
+ id="org.cishell.reference.gui.datamanager.DataManagerView"
+ name="Data Manager"/>
+ </extension>
+
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="org.cishell.reference.gui.workspace.Perspective">
Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/src/org/cishell/reference/gui/brand/cishell/DataManagerView.java
===================================================================
--- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/src/org/cishell/reference/gui/brand/cishell/DataManagerView.java (rev 0)
+++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/src/org/cishell/reference/gui/brand/cishell/DataManagerView.java 2006-09-19 17:51:54 UTC (rev 203)
@@ -0,0 +1,9 @@
+package org.cishell.reference.gui.brand.cishell;
+
+import org.cishell.reference.gui.datamanager.AbstractDataManagerView;
+
+public class DataManagerView extends AbstractDataManagerView {
+ public DataManagerView() {
+ super("org.cishell.reference.gui.brand.cishell");
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|