Browse CVS Repository
Annotation of /concierge/Concierge/plugin.xml
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( hide annotations)
( download)
( as text)
Mon Jun 5 06:39:50 2006 UTC
(17 years, 10 months ago)
by yasunori_suzuki
Branch: MAIN
File MIME type: application/xml
first release
| 1 |
yasunori_suzuki |
1.1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
|
|
<?eclipse version="3.0"?> |
| 3 |
|
|
<plugin> |
| 4 |
|
|
|
| 5 |
|
|
<extension |
| 6 |
|
|
id="application" |
| 7 |
|
|
point="org.eclipse.core.runtime.applications"> |
| 8 |
|
|
<application> |
| 9 |
|
|
<run |
| 10 |
|
|
class="jp.sourceforge.concierge.framework.Application"> |
| 11 |
|
|
</run> |
| 12 |
|
|
</application> |
| 13 |
|
|
</extension> |
| 14 |
|
|
<extension |
| 15 |
|
|
point="org.eclipse.ui.perspectives"> |
| 16 |
|
|
<perspective |
| 17 |
|
|
name="Concierge Perspective" |
| 18 |
|
|
class="jp.sourceforge.concierge.framework.MainPerspective" |
| 19 |
|
|
id="jp.sourceforge.concierge.framework.MainPerspective"> |
| 20 |
|
|
</perspective> |
| 21 |
|
|
</extension> |
| 22 |
|
|
<extension |
| 23 |
|
|
point="org.eclipse.ui.preferencePages"> |
| 24 |
|
|
<page |
| 25 |
|
|
class="jp.sourceforge.concierge.framework.preferences.ProxyPreferencePage" |
| 26 |
|
|
id="jp.sourceforge.concierge.framework.preferences.ProxyPreferencePage" |
| 27 |
|
|
name="Proxy"/> |
| 28 |
|
|
<page |
| 29 |
|
|
class="jp.sourceforge.concierge.framework.preferences.SamplePreferencePage" |
| 30 |
|
|
id="jp.sourceforge.concierge.framework.preferences.SamplePreferencePage" |
| 31 |
|
|
name="Sample Preferences"/> |
| 32 |
|
|
<page |
| 33 |
|
|
class="jp.sourceforge.concierge.framework.preferences.AccountPreferencePage" |
| 34 |
|
|
id="jp.sourceforge.concierge.framework.preferences.AccountPreferencePage" |
| 35 |
|
|
name="Account"/> |
| 36 |
|
|
</extension> |
| 37 |
|
|
<extension |
| 38 |
|
|
point="org.eclipse.core.runtime.preferences"> |
| 39 |
|
|
<initializer class="jp.sourceforge.concierge.framework.preferences.PreferenceInitializer"/> |
| 40 |
|
|
</extension> |
| 41 |
|
|
|
| 42 |
|
|
</plugin> |
|