Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Mylyn » Eclipse timeline plugin
Eclipse timeline plugin [message #25224] Tue, 04 September 2007 06:26 Go to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Good morning/afternoon/evening,

Please forgive me if I post the wrong place, but i definitely think it will
help to mylyn users.

I recently start a eclipse plugin project which use Timeline view (from
http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
with Mylyn to show Mylyn tasks modification in the scrolling timeline view.

The project is http://code.google.com/p/eclipsetimeline/, though it is in
beta state, I hope someone can take a try and provide precious feedback for
me.

Thanks.
Re: Eclipse timeline plugin [message #26271 is a reply to message #25224] Thu, 06 September 2007 23:34 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: beatmik.acm.org

Cool! Please consider adding this to the Mylyn Extensions page. I just
added a Utilities section for these sorts of extensions:

http://wiki.eclipse.org/Mylyn_Extensions

Mik

Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
Re: Eclipse timeline plugin [message #26923 is a reply to message #25224] Fri, 07 September 2007 18:20 Go to previous messageGo to next message
Kim Sullivan is currently offline Kim SullivanFriend
Messages: 44
Registered: July 2009
Member
Hi,

> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.

I wanted to try it, but couldn't get it to run. After I restarted Eclipse
and opened the Timeline view, I got the following error:
"HttpService not started. Please check the OSGi HTTP service
configuration, make sure the port is not in used."

Kim
Re: Eclipse timeline plugin [message #27200 is a reply to message #26923] Mon, 10 September 2007 09:53 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

It may caused by your port 80 is in used. Eclipse Timeline depends on
HttpService, and the OSGi HttpService's default port is 80, if it is in
used, the HTTPService will start fail, hence, can't start the timeline view.

You can try to start eclipse with
argument -Dorg.osgi.service.http.port=other port.


"Kim Sullivan" <alicebot@seznam.cz> wrote in message
news:fbs4pj$p0f$1@build.eclipse.org...
> Hi,
>
>> The project is http://code.google.com/p/eclipsetimeline/, though it is in
>> beta state, I hope someone can take a try and provide precious feedback
>> for
>> me.
>
> I wanted to try it, but couldn't get it to run. After I restarted Eclipse
> and opened the Timeline view, I got the following error:
> "HttpService not started. Please check the OSGi HTTP service
> configuration, make sure the port is not in used."
>
> Kim
OT: OSGi (was Re: Eclipse timeline plugin) [message #27274 is a reply to message #27200] Mon, 10 September 2007 12:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jay+news.jay.fm

On Mon, 10 Sep 2007 17:53:25 +0800, Jay Chen wrote:

> It may caused by your port 80 is in used. Eclipse Timeline depends on
> HttpService, and the OSGi HttpService's default port is 80, if it is in
> used, the HTTPService will start fail, hence, can't start the timeline view.

Since you sound like you know what you're talking about - could you tell me
what the heck OSGi is? I went to their web site last week, and all I could
figure out is that it's a thing to enable things in the something space.

Jay
Re: Eclipse timeline plugin [message #27826 is a reply to message #27200] Tue, 11 September 2007 16:58 Go to previous messageGo to next message
Kim Sullivan is currently offline Kim SullivanFriend
Messages: 44
Registered: July 2009
Member
Jay Chen wrote:
> It may caused by your port 80 is in used. Eclipse Timeline depends on
> HttpService, and the OSGi HttpService's default port is 80, if it is in
> used, the HTTPService will start fail, hence, can't start the timeline view.
>
> You can try to start eclipse with
> argument -Dorg.osgi.service.http.port=other port.

Doesn't help, I still get the same error (I checked the eclipse log,
there are no errors in there). I never used the osgi http service, is
there anything else I have to do to configure it?

Kim
Re: Eclipse timeline plugin [message #27866 is a reply to message #25224] Tue, 11 September 2007 23:06 Go to previous messageGo to next message
David Rothenberger is currently offline David RothenbergerFriend
Messages: 5
Registered: July 2009
Junior Member
On 9/3/2007 11:26 PM, Jay Chen wrote:
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.

I tried out this plugin yesterday and really like it. One question: Can
it display information about Mylyn tasks from repositories other than
the local one? I have a Trac repository and the timeline doesn't seem to
include tasks from that repository.

--
David Rothenberger ---- daveroth@acm.org

wolf, n.:
A man who knows all the ankles.
Re: OSGi (was Re: Eclipse timeline plugin) [message #28104 is a reply to message #27274] Thu, 13 September 2007 03:15 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

I am not a OSGi guru, and i think i am not master OSGi in deep, so i can't
answer you what the OSGi really is.

I think do more google search, visist wikipedia may help you some, or you
can post question in eclipse.technology.equinox group or other OSGi mailling
list.

Also, i think do some research on eclipse architecture is a plus to help you
understand OSGi.

"Jay Levitt" <jay+news@jay.fm> wrote in message
news:dn8eegj6y9em.dlg@jay.fm...
> On Mon, 10 Sep 2007 17:53:25 +0800, Jay Chen wrote:
>
>> It may caused by your port 80 is in used. Eclipse Timeline depends on
>> HttpService, and the OSGi HttpService's default port is 80, if it is in
>> used, the HTTPService will start fail, hence, can't start the timeline
>> view.
>
> Since you sound like you know what you're talking about - could you tell
> me
> what the heck OSGi is? I went to their web site last week, and all I
> could
> figure out is that it's a thing to enable things in the something space.
>
> Jay
Re: Eclipse timeline plugin [message #28143 is a reply to message #27826] Thu, 13 September 2007 03:24 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Do you install the org.eclipse.equinox.http?

I recommend you to install it use the update site
http://eclipsetimeline.googlecode.com/svn/updates, it can resolved the
dependcy issue.

If it still can't work, plz post your eclipse configuration details.

"Kim Sullivan" <alicebot@seznam.cz> wrote in message
news:fc6hfd$fr7$1@build.eclipse.org...
> Jay Chen wrote:
>> It may caused by your port 80 is in used. Eclipse Timeline depends on
>> HttpService, and the OSGi HttpService's default port is 80, if it is in
>> used, the HTTPService will start fail, hence, can't start the timeline
>> view.
>>
>> You can try to start eclipse with
>> argument -Dorg.osgi.service.http.port=other port.
>
> Doesn't help, I still get the same error (I checked the eclipse log, there
> are no errors in there). I never used the osgi http service, is there
> anything else I have to do to configure it?
>
> Kim
Re: Eclipse timeline plugin [message #28182 is a reply to message #27866] Thu, 13 September 2007 03:30 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Yes, there is bug showing all task groups, currently just show task
categories, and i am trying to fix it.

Since i am not familiar with Mylyn API, do you have any advisement on
retreiveing all task groups and retreiveing special groups tasks?

I am cleaning up the code, i will upload the code soon.

"David Rothenberger" <daveroth@acm.org> wrote in message
news:fc771c$kde$1@build.eclipse.org...
> On 9/3/2007 11:26 PM, Jay Chen wrote:
>> I recently start a eclipse plugin project which use Timeline view (from
>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>> timeline view.
>
> I tried out this plugin yesterday and really like it. One question: Can it
> display information about Mylyn tasks from repositories other than the
> local one? I have a Trac repository and the timeline doesn't seem to
> include tasks from that repository.
>
> --
> David Rothenberger ---- daveroth@acm.org
>
> wolf, n.:
> A man who knows all the ankles.
Re: Eclipse timeline plugin [message #28233 is a reply to message #28143] Thu, 13 September 2007 08:24 Go to previous messageGo to next message
Kim Sullivan is currently offline Kim SullivanFriend
Messages: 44
Registered: July 2009
Member
Jay Chen wrote:
> Do you install the org.eclipse.equinox.http?
>
> I recommend you to install it use the update site
> http://eclipsetimeline.googlecode.com/svn/updates, it can resolved the
> dependcy issue.
>
> If it still can't work, plz post your eclipse configuration details.

Yes, I originally installed it using the update site, and some
dependency got resolved (I think Eclipse Project Equinox bundle
feature). Here are my configuration details (the only unusual thing
would be using the mylyn dev builds instead of the release or the
milestone... the activity.xml file has changed since the Europa release).

*** Platform Details:

*** System properties:
awt.toolkit=sun.awt.windows.WToolkit
eclipse.buildId=I20070323-1616
eclipse.commands=-os
win32
-ws
win32
-arch
x86
-showsplash
-launcher
D:\Progs\eclipse\eclipse.exe
-name
Eclipse
--launcher.library
D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher.win32. win32.x86_1.0.0.v20070523\eclipse_1017a.dll
-startup
D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0. v20070606.jar
-Dorg.osgi.service.http.port=2001
-vm
C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
eclipse.ee.install.verify=false
eclipse.product=org.eclipse.sdk.ide
eclipse.startTime=1189671460687
eclipse.vm=C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
eclipse.vmargs=-Xmx256M
-XX:MaxPermSize=256m
-Djava.class.path=D:\Progs\eclipse\plugins\org.eclipse.equin ox.launcher_1.0.0.v20070606.jar
eof=eof
file.encoding=Cp1250
file.encoding.pkg=sun.io
file.separator=\
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.class.path=D:\Progs\eclipse\plugins\org.eclipse.equinox .launcher_1.0.0.v20070606.jar
java.class.version=50.0
java.endorsed.dirs=C:\Program Files\Java\jre1.6.0_02\lib\endorsed
java.ext.dirs=C:\Program
Files\Java\jre1.6.0_02\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
java.home=C:\Program Files\Java\jre1.6.0_02
java.io.tmpdir=C:\DOCUME~1\User\LOCALS~1\Temp\
java.library.path=D:\Progs\eclipse;.;C:\WINDOWS\Sun\Java\bin ;C:\WINDOWS\system32;C:\WINDOWS;C:\Program
Files\Java\jre1.6.0_02\bin\client;C:\Program
Files\Java\jre1.6.0_02\bin;E:\cygwin\bin\;D:\Progs\MinGW\bin ;D:\Progs\Python24\.;D:\Program
Files\Borland\BDS\3.0\Bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ WINDOWS\System32\Wbem;D:\Program
Files\Common
Files\GTK\2.0\bin;D:\progs\PHP\;d:\progs\svn\bin\;"C:\Progra~1\Java\jdk1.6.0 "\bin;d:\Progs\ant\bin;D:\Program
Files\WinSCP\;D:\Progs\svk-2.0.0-1\bin;D:\My Documents\Borland Studio
Projects\Bpl;D:\Modeltech_xe_starter\win32xoem;D:\Program Files\MKVtoolnix
java.runtime.name=Java(TM) SE Runtime Environment
java.runtime.version=1.6.0_02-b06
java.specification.name=Java Platform API Specification
java.specification.vendor=Sun Microsystems Inc.
java.specification.version=1.6
java.vendor=Sun Microsystems Inc.
java.vendor.url=http://java.sun.com/
java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
java.version=1.6.0_02
java.vm.info=mixed mode
java.vm.name=Java HotSpot(TM) Client VM
java.vm.specification.name=Java Virtual Machine Specification
java.vm.specification.vendor=Sun Microsystems Inc.
java.vm.specification.version=1.0
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=1.6.0_02-b06
line.separator=

org.apache.commons.logging.Log=org.apache.commons.logging.im pl.SimpleLog
org.apache.commons.logging.simplelog.log.httpclient.wire.hea der=off
org.apache.commons.logging.simplelog.log.org.apache.commons. httpclient=off
org.eclipse.equinox.launcher.splash.handle=32375712
org.eclipse.equinox.launcher.splash.location=d:\Progs\eclips e\plugins\org.eclipse.platform_3.3.0.v20070613\splash.bmp
org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSG i/Minimum-1.1,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,Ja vaSE-1.6
org.osgi.framework.language=cs
org.osgi.framework.os.name=WindowsXP
org.osgi.framework.os.version=5.1
org.osgi.framework.processor=x86
org.osgi.framework.system.packages=javax.accessibility,javax .activation,javax.activity,javax.annotation,javax.annotation .processing,javax.crypto,javax.crypto.interfaces,javax.crypt o.spec,javax.imageio,javax.imageio.event,javax.imageio.metad ata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,jav ax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap ,javax.lang.model,javax.lang.model.element,javax.lang.model. type,javax.lang.model.util,javax.management,javax.management .loading,javax.management.modelmbean,javax.management.monito r,javax.management.openmbean,javax.management.relation,javax .management.remote,javax.management.remote.rmi,javax.managem ent.timer,javax.naming,javax.naming.directory,javax.naming.e vent,javax.naming.ldap,javax.naming.spi,javax.net,javax.net. ssl,javax.print,javax.print.attribute,javax.print.attribute. standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.r mi.ssl,javax.script,javax.security.auth,javax.security.auth. callback,javax.security.auth.
kerberos,javax.security.auth.login,javax.security.auth.spi,j avax.security.auth.x500,javax.security.cert,javax.security.s asl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sample d,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.s ql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swin g.border,javax.swing.colorchooser,javax.swing.event,javax.sw ing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,java x.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.s ynth,javax.swing.table,javax.swing.text,javax.swing.text.htm l,javax.swing.text.html.parser,javax.swing.text.rtf,javax.sw ing.tree,javax.swing.undo,javax.tools,javax.transaction,java x.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.ann otation,javax.xml.bind.annotation.adapters,javax.xml.bind.at tachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xm l.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xm l.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.cr ypto.dsig.spec,javax.xml.datat
ype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,jav ax.xml.stream,javax.xml.stream.events,javax.xml.stream.util, javax.xml.transform,javax.xml.transform.dom,javax.xml.transf orm.sax,javax.xml.transform.stax,javax.xml.transform.stream, javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax .xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,jav ax.xml.ws.spi,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,or g.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.Dyn AnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,o rg.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNa ming.NamingContextExtPackage,org.omg.CosNaming.NamingContext Package,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAn y.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org. omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPac kage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.P ortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer ,org.omg.PortableServer.Curren
tPackage,org.omg.PortableServer.POAManagerPackage,org.omg.Po rtableServer.POAPackage,org.omg.PortableServer.portable,org. omg.PortableServer.ServantLocatorPackage,org.omg.SendingCont ext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap, org.w3c.dom.events,org.w3c.dom.ls,org.xml.sax,org.xml.sax.ex t,org.xml.sax.helpers
org.osgi.framework.vendor=Eclipse
org.osgi.framework.version=1.4.0
org.osgi.supports.framework.extension=true
org.osgi.supports.framework.fragment=true
org.osgi.supports.framework.requirebundle=true
os.arch=x86
os.name=Windows XP
os.version=5.1
osgi.arch=x86
osgi.bundles=org.eclipse.equinox.common@2:start,
org.eclipse.update.configurator@3:start, org.eclipse.core.runtime@start
osgi.bundlestore=D:\Progs\eclipse\configuration\org.eclipse. osgi\bundles
osgi.compatibility.bootdelegation=true
osgi.configuration.area=file:/D:/Progs/eclipse/configuration /
osgi.framework=file:/d:/Progs/eclipse/plugins/org.eclipse.os gi_3.3.0.v20070530.jar
osgi.framework.beginningstartlevel=1
osgi.framework.shape=jar
osgi.framework.version=3.3.0.v20070530
osgi.install.area=file:/D:/Progs/eclipse/
osgi.instance.area=file:/D:/.projects/ibm/eclipse-workspace/
osgi.instance.area.default=file:/D:/.windows/workspace/
osgi.logfile=D:\.projects\ibm\eclipse-workspace\.metadata\.l og
osgi.manifest.cache=D:\Progs\eclipse\configuration\org.eclip se.osgi\manifests
osgi.nl=cs_CZ
osgi.os=win32
osgi.splashLocation=d:\Progs\eclipse\plugins\org.eclipse.pla tform_3.3.0.v20070613\splash.bmp
osgi.splashPath=platform:/base/plugins/org.eclipse.platform
osgi.syspath=d:\Progs\eclipse\plugins
osgi.ws=win32
path.separator=;
sun.arch.data.model=32
sun.boot.class.path=C:\Program
Files\Java\jre1.6.0_02\lib\resources.jar;C:\Program
Files\Java\jre1.6.0_02\lib\rt.jar;C:\Program
Files\Java\jre1.6.0_02\lib\sunrsasign.jar;C:\Program
Files\Java\jre1.6.0_02\lib\jsse.jar;C:\Program
Files\Java\jre1.6.0_02\lib\jce.jar;C:\Program
Files\Java\jre1.6.0_02\lib\charsets.jar;C:\Program
Files\Java\jre1.6.0_02\classes
sun.boot.library.path=C:\Program Files\Java\jre1.6.0_02\bin
sun.cpu.endian=little
sun.cpu.isalist=
sun.desktop=windows
sun.io.unicode.encoding=UnicodeLittle
sun.jnu.encoding=Cp1250
sun.management.compiler=HotSpot Client Compiler
sun.os.patch.level=Service Pack 2
user.country=CZ
user.dir=D:\Progs\eclipse
user.home=D:\.windows
user.language=cs
user.name=User
user.timezone=Europe/Prague
user.variant=

*** Features:
org.eclipse.cvs (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS Client"
org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
Client SDK"
org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code Generator"
org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
Generation"
org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
Generation UI"
org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
Generator UI"
org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common"
org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI"
org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert Support"
org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Programmers Guide"
org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore"
org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit Support"
org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit"
org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI"
org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping "
org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
Framework (EMF) - org.eclipse.emf.mapping.ecore"
org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor"
org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI"
org.eclipse.emf.ocl (1.1.0.v200706071450-10-7w311817312619) "Object
Constraint Language (OCL) 2.0 Compatibility API"
org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
Technology Query Framework"
org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
Framework Technology Query OCL"
org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Source"
org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Transaction Core"
org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Model Validation Core"
org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Validation Support for OCL"
org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Workbench Core"
org.eclipse.gef (3.3.0.v20070620) "Graphical Editing Framework"
org.eclipse.gmf (1.0.100.v20070601-1400-7d-ETeEYjiMWQX3az0fBWRjypkm7)
"Graphical Modeling Framework"
org.eclipse.jdt (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR) "Eclipse
Java Development Tools"
org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
"Eclipse Java Development Tools SDK"
org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET"
org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET Documentation"
org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling
Framework Technologies - JET Examples"
org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET SDK"
org.eclipse.mylyn_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.bugzilla_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.context_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.ide_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.java_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.pde_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.sandbox.ui_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.trac_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.ocl (1.1.0.v200706071450-32-9oA55P5M8C8KCK) "Object
Constraint Language (OCL) 2.0 Parser/Interpreter"
org.eclipse.ocl.uml (1.1.0.v200706071450-10-7w311817182561) "OCL 2.0
Binding for UML"
org.eclipse.pde (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse Plug-in
Development Environment"
org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
Plug-in Development Environment Developer Resources"
org.eclipse.platform (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse
Platform"
org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
"Eclipse Platform Plug-in Developer Resources"
org.eclipse.rcp (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP"
org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG)
"Eclipse RCP Plug-in Developer Resources"
org.eclipse.sdk (3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO) "Eclipse
Project SDK"
org.eclipse.uml2 (2.1.0.v200706251652) "UML2"
org.eclipse.wst (2.0.0.v200706041905-7C-18k0IWJZ93WDDJlQ60nUjTdJp) "Web
Standard Tools (WST)"
org.eclipse.wst.common_core.feature.source
(2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools -
Common Core Source"
org.eclipse.wst.common_ui.feature.source
(2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
Common UI Source"
org.eclipse.wst.sdk (2.0.0.v200706041905-7E-18aNKbx2jys2HTkz0_f_9fLWx)
"Web Standard Tools (WST)"
org.eclipse.wst.server_core.feature.source
(2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server
Core Source"
org.eclipse.wst.server_ui.feature.source
(2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
Server UI Source"
org.eclipse.wst.web_core.feature.source
(2.0.0.v200706041905-42CI_kE77Y7TAMAVHH) "Web Standard Tools - Web Core
Source"
org.eclipse.wst.web_ui.feature.source
(2.0.0.v200706041905-7A0EAeCiWfEJsCcbAj88SKfRX) "Web Standard Tools -
Web UI Source"
org.eclipse.wst.ws_core.feature.source
(2.0.0.v200706210215-7E7KE_QEC3wSU4TpiAiQ0r) "Web Standard Tools - Web
Service Core Source"
org.eclipse.wst.ws_ui.feature.source
(2.0.0.v200706041905-791ECBAufYO8_EaomWE4Fe3uXjR1) "Web Standard Tools -
Web Service UI Source"
org.eclipse.wst.xml_core.feature.source
(2.0.0.v200706041905-787BE9zCYQCCz-CnUGLYQV) "Web Standard Tools - XML
Core Source"
org.eclipse.wst.xml_ui.feature.source
(2.0.0.v200706182145-7A1ECBCnbckz0bZu9wHqAKN3mYpZ) "Web Standard Tools -
XML UI Source"
org.eclipse.xsd (2.3.0.v200706262000) "XML Schema Infoset Model (XSD)"
org.eclipse.xsd.edit (2.3.0.v200706262000) "XML Schema Edit Framework"
org.tigris.subversion.subclipse (1.2.3) "SVN Team Provider Core"

*** Plug-in Registry:
com.ibm.icu (3.6.1.v20070417) "International Components for Unicode for
Java (ICU4J)" [Active]
com.ibm.icu.source (3.6.1.v20070417) "International Components for
Unicode for Java (ICU4J) source plug-in" [Resolved]
com.ibm.icu36.data.update (3.6.1.v20070701_2007f) "ICU4J Data Update
Fragment" [Resolved]
com.jcraft.jsch (0.1.31) "JSch" [Resolved]
eclipse.timeline (1.0.0.200709051757) "Timeline Plug-in" [Starting]
eclipse.timeline.mylyn (1.0.0.200709051757) "Mylyn Tasks Event Source
Plug-in" [Starting]
eclipse.timeline.xml (1.0.0.200709051757) "Xml Event Source Plug-in"
[Starting]
javax.servlet (2.4.0.v200706111738) "Servlet API Bundle" [Resolved]
javax.servlet.jsp (2.0.0.v200706191603) "Java Server Pages API Bundle"
[Resolved]
javax.servlet.jsp.source (2.0.0.v200706191603) "Java Server Pages API
Source Bundle" [Resolved]
javax.servlet.source (2.4.0.v200706111738) "Servlet API Source Bundle"
[Resolved]
javax.wsdl (1.4.0.v200706111329) "WSDL4J" [Resolved]
javax.wsdl15 (1.5.1.v200705290614) "WSDL4J" [Resolved]
javax.xml.rpc (1.1.0.v200706111329) "JAX-RPC" [Resolved]
javax.xml.soap (1.2.0.v200706111329) "SAAJ" [Resolved]
net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200706111738) "SourceForge
LPG" [Resolved]
net.sourceforge.lpg.lpgjavaruntime.source (1.1.0.v200706111738)
"SourceForge LPG Source Bundle" [Resolved]
org.apache.ant (1.7.0.v200706080842) "Apache Ant" [Resolved]
org.apache.ant.source (1.7.0.v200706080842) "Apache Ant Source" [Resolved]
org.apache.axis (1.4.0.v200706191647) "Apache Web Services" [Resolved]
org.apache.batik.bridge (1.6.0.v200706111724) "Apache Batik
Bridge/GVT/Scripting" [Resolved]
org.apache.batik.css (1.6.0.v200706111724) "Apache Batik CSS" [Resolved]
org.apache.batik.dom (1.6.0.v200706111724) "Apache Batik DOM" [Resolved]
org.apache.batik.dom.svg (1.6.0.v200706111724) "Apache Batik SVG DOM"
[Resolved]
org.apache.batik.ext.awt (1.6.0.v200706111724) "Apache Batik AWT
Utilities" [Resolved]
org.apache.batik.parser (1.6.0.v200706111724) "Apache Batik Parser"
[Resolved]
org.apache.batik.svggen (1.6.0.v200706111724) "Apache Batik SVG
Generation" [Resolved]
org.apache.batik.transcoder (1.6.0.v200706111724) "Apache Batik
Transcoder" [Resolved]
org.apache.batik.util (1.6.0.v200706111724) "Apache Batik Utilities"
[Resolved]
org.apache.batik.util.gui (1.6.0.v200706111724) "Apache Batik GUI
Utilities" [Resolved]
org.apache.batik.xml (1.6.0.v200706111724) "Apache Batik XML" [Resolved]
org.apache.commons.discovery (0.2.0.v200706111329) "Jakarta-Commons
Discovery" [Resolved]
org.apache.commons.el (1.0.0.v200706111724) "Apache Commons JSP 2.0
Expression Language Interpreter" [Resolved]
org.apache.commons.el.source (1.0.0.v200706111724) "Apache Commons JSP
2.0 Expression Language Interpreter Source" [Resolved]
org.apache.commons.logging (1.0.4.v200706111724) "Apache Commons Logging
Plug-in" [Resolved]
org.apache.commons.logging.source (1.0.4.v200706111724) "Apache Commons
Logging Plug-in Source" [Resolved]
org.apache.jasper (5.5.17.v200706111724) "Apache Jasper 2 Plug-in"
[Resolved]
org.apache.jasper.source (5.5.17.v200706111724) "Apache Jasper 2 Source
Plug-in" [Resolved]
org.apache.log4j (1.2.13.v200706111418) "Apache Jakarta log4j Plug-in"
[Resolved]
org.apache.lucene (1.9.1.v200706111724) "Apache Lucene" [Resolved]
org.apache.lucene.analysis (1.9.1.v200706181610) "Apache Lucene
Analysis" [Resolved]
org.apache.lucene.analysis.source (1.9.1.v200706181610) "Apache Lucene
Analysis Source" [Resolved]
org.apache.lucene.source (1.9.1.v200706111724) "Apache Lucene Source"
[Resolved]
org.apache.wsil4j (1.0.0.v200706111329) "WSIL4J" [Resolved]
org.apache.xerces (2.8.0.v200705301630) "Apache Xerces-J" [Resolved]
org.apache.xml.resolver (1.1.0.v200705310020) "Apache XmlResolver"
[Resolved]
org.eclipse.ant.core (3.1.200.v20070522) "Ant Build Tool Core" [Starting]
org.eclipse.ant.ui (3.2.100.v20070511) "Ant UI" [Active]
org.eclipse.compare (3.3.0.I20070606) "Compare Support" [Active]
org.eclipse.core.boot (3.1.100.v20060603) "Core Boot" [Starting]
org.eclipse.core.commands (3.3.0.I20070605-0010) "Commands" [Resolved]
org.eclipse.core.contenttype (3.2.100.v20070319) "Eclipse Content
Mechanism" [Active]
org.eclipse.core.databinding (1.0.0.I20070606-0010) "JFace Data Binding"
[Resolved]
org.eclipse.core.databinding.beans (1.0.0.I20070606-0010) "JFace Data
Binding for JavaBeans" [Resolved]
org.eclipse.core.expressions (3.3.0.v20070606-0010) "Expression
Language" [Active]
org.eclipse.core.filebuffers (3.3.0.v20070606-0010) "File Buffers" [Active]
org.eclipse.core.filesystem (1.1.0.v20070606) "Core File Systems" [Active]
org.eclipse.core.filesystem.win32.x86 (1.1.0.v20070510) "Core File
System for Windows" [Resolved]
org.eclipse.core.jobs (3.3.0.v20070423) "Eclipse Jobs Mechanism" [Active]
org.eclipse.core.net (1.0.0.I20070531) "Internet Connection Management"
[Active]
org.eclipse.core.resources (3.3.0.v20070604) "Core Resource Management"
[Active]
org.eclipse.core.resources.compatibility (3.2.100.v20070502) "Core
Resource Management Compatibility Fragment" [Resolved]
org.eclipse.core.resources.win32 (3.3.0.v20070226) "Core Resource
Management Win32 Fragment" [Resolved]
org.eclipse.core.runtime (3.3.100.v20070530) "Core Runtime" [Active]
org.eclipse.core.runtime.compatibility (3.1.200.v20070502) "Core Runtime
Plug-in Compatibility" [Active]
org.eclipse.core.runtime.compatibility.auth (3.2.100.v20070502)
"Authorization Compatibility Plug-in" [Active]
org.eclipse.core.runtime.compatibility.registry (3.2.100.v20070316)
"Eclipse Registry Compatibility Fragment" [Resolved]
org.eclipse.core.variables (3.2.0.v20070426) "Core Variables" [Starting]
org.eclipse.cvs (1.0.0.v20070606) "Eclipse CVS Client" [Starting]
org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
Client SDK" [Resolved]
org.eclipse.debug.core (3.3.0.v20070607-1800) "Debug Core" [Active]
org.eclipse.debug.ui (3.3.0.v20070607-1800) "Debug UI" [Active]
org.eclipse.draw2d (3.2.100.v20070529) "Graphical Editing Framework
Draw2d" [Starting]
org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
[Starting]
org.eclipse.emf.ant (2.3.0.v200706262000) "EMF Ant Tasks" [Starting]
org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code
Generator" [Starting]
org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
Generation" [Starting]
org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
Generation UI" [Starting]
org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
Generator UI" [Starting]
org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common" [Starting]
org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI" [Starting]
org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert
Support" [Starting]
org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Programmers Guide" [Starting]
org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore" [Starting]
org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit
Support" [Starting]
org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
[Starting]
org.eclipse.emf.ecore.change (2.3.0.v200706262000) "EMF Ecore Change
Model" [Starting]
org.eclipse.emf.ecore.change.edit (2.3.0.v200706262000) "EMF Ecore
Change Edit Support" [Starting]
org.eclipse.emf.ecore.xmi (2.3.0.v200706262000) "EMF XMI" [Starting]
org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit" [Starting]
org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI" [Starting]
org.eclipse.emf.exporter (2.3.0.v200706262000) "EMF Model Export
Support" [Starting]
org.eclipse.emf.cheatsheets (2.3.0.v200706262000) "EMF Cheat Sheets"
[Starting]
org.eclipse.emf.importer (2.3.0.v200706262000) "EMF Model Import
Support" [Starting]
org.eclipse.emf.importer.ecore (2.3.0.v200706262000) "EMF Ecore
Importer" [Starting]
org.eclipse.emf.importer.java (2.3.0.v200706262000) "EMF Annotated Java
Importer" [Starting]
org.eclipse.emf.importer.rose (2.3.0.v200706262000) "EMF Rose Importer"
[Starting]
org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping" [Starting]
org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
Framework (EMF) - org.eclipse.emf.mapping.ecore" [Starting]
org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor" [Starting]
org.eclipse.emf.mapping.ecore2ecore (2.3.0.v200706262000) "Ecore to
Ecore Mapping" [Starting]
org.eclipse.emf.mapping.ecore2ecore.editor (2.3.0.v200706262000) "Ecore
to Ecore Mapping Editor" [Starting]
org.eclipse.emf.mapping.ecore2xml (2.3.0.v200706262000) "Ecore to XML
Mapping" [Starting]
org.eclipse.emf.mapping.ecore2xml.ui (2.3.0.v200706262000) "Ecore to XML
Mapping UI" [Starting]
org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI" [Starting]
org.eclipse.emf.ocl (1.1.0.v200706201508) "Object Constraint Language
(OCL) 2.0 Compatibility API" [Starting]
org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
Technology Query Framework" [Starting]
org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
Framework Technology Query OCL" [Starting]
org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Source" [Resolved]
org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Transaction Core" [Starting]
org.eclipse.emf.transaction.ui (1.0.1.v200703301538) "Eclipse Modeling
Framework Technology Transaction UI" [Starting]
org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Model Validation Core" [Starting]
org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Validation Support for OCL" [Resolved]
org.eclipse.emf.validation.ui (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Validation UI" [Starting]
org.eclipse.emf.validation.ui.ide (1.0.1.v200703301524) "Eclipse
Modeling Framework Technology Validation UI IDE" [Starting]
org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Workbench Core" [Starting]
org.eclipse.emf.workspace.ui (1.0.100.v200703301538) "Eclipse Modeling
Framework Technology Workbench UI" [Starting]
org.eclipse.equinox.app (1.0.0.v20070606) "Equinox Application
Container" [Active]
org.eclipse.equinox.common (3.3.0.v20070426) "Common Eclipse Runtime"
[Active]
org.eclipse.equinox.device (1.0.0.v20070226) "Device Access Service"
[Resolved]
org.eclipse.equinox.event (1.0.100.v20070516) "Event Admin" [Resolved]
org.eclipse.equinox.http (1.0.100.v20070423) "HTTP Service" [Resolved]
org.eclipse.equinox.http.jetty (1.0.0.v20070607) "Jetty Http Service"
[Starting]
org.eclipse.equinox.http.registry (1.0.0.v20070608) "Http Service
Registry Extensions" [Resolved]
org.eclipse.equinox.http.servlet (1.0.0.v20070606) "Http Services
Servlet" [Starting]
org.eclipse.equinox.http.servletbridge (1.0.0.v20070523) "Servletbridge
Http Service" [Resolved]
org.eclipse.equinox.jsp.jasper (1.0.0.v20070607) "Jasper Jsp Support
Bundle" [Starting]
org.eclipse.equinox.jsp.jasper.registry (1.0.0.v20070607) "Jasper Jsp
Registry Support Plug-in" [Starting]
org.eclipse.equinox.launcher (1.0.0.v20070606) "Equinox Launcher" [Resolved]
org.eclipse.equinox.launcher.win32.win32.x86 (1.0.0.v20070523) "Equinox
Launcher Win32 X86 Fragment" [Resolved]
org.eclipse.equinox.log (1.0.100.v20070226) "Log Service" [Resolved]
org.eclipse.equinox.metatype (1.0.0.v20070226) "Meta Type" [Resolved]
org.eclipse.equinox.preferences (3.2.100.v20070522) "Eclipse Preferences
Mechanism" [Active]
org.eclipse.equinox.registry (3.3.0.v20070522) "Extension Registry
Support" [Active]
org.eclipse.equinox.servletbridge (1.0.0.v20070523) "bundleName" [Resolved]
org.eclipse.equinox.useradmin (1.0.0.v20070226) "User Admin Service"
[Resolved]
org.eclipse.gef (3.2.100.v20070620) "Graphical Editing Framework" [Starting]
org.eclipse.gmf (1.0.0.v20070601-1400) "Graphical Modeling Framework"
[Starting]
org.eclipse.gmf.bridge (1.1.0.v20070621-0000) "GMF Models Bridging
Plug-in" [Starting]
org.eclipse.gmf.bridge.ui (1.1.0.v20070621-0000) "GMF Tooling UI" [Starting]
org.eclipse.gmf.bridge.ui.dashboard (2.0.0.v20070621-0000) "GMF
Dashboard" [Starting]
org.eclipse.gmf.codegen (2.0.0.v20070621-0000) "GMF GenModel and Code
Generation" [Starting]
org.eclipse.gmf.codegen.edit (2.0.0.v20070614-1400) "GMF GenModel Edit
Support" [Starting]
org.eclipse.gmf.codegen.ui (1.1.0.v20070621-0000) "GMF Code Generation
UI" [Starting]
org.eclipse.gmf.common (1.1.0.v20070621-0000) "GMF Tooling Commons
Plug-in" [Starting]
org.eclipse.gmf.doc.ui (1.1.0.v20070601-1400) "GMF Documentation
Cheatsheets" [Starting]
org.eclipse.gmf.ecore.editor (2.0.0.v20070621-0000) "ECore Sample
Diagram Plugin" [Starting]
org.eclipse.gmf.graphdef (2.0.0.v20070621-0000) "GMF Graphical
Definition" [Resolved]
org.eclipse.gmf.graphdef.codegen (2.0.0.v20070621-0000) "Graphical
Definition Code Generator" [Starting]
org.eclipse.gmf.graphdef.codegen.ui (1.0.100.v20070621-0000) "Graphical
Definition Code Generator UI Support" [Resolved]
org.eclipse.gmf.graphdef.edit (2.0.0.v20070601-1400) "GMFGraph Edit
Support" [Starting]
org.eclipse.gmf.map (2.0.0.v20070621-0000) "GMF Mapping Model" [Starting]
org.eclipse.gmf.map.edit (2.0.0.v20070621-0000) "GMF Mapping Edit
Support" [Starting]
org.eclipse.gmf.runtime.common.core (1.0.100.v20070601-1400) "GMF Common
Core" [Starting]
org.eclipse.gmf.runtime.common.ui (1.0.100.v20070601-1400) "GMF Common
UI" [Starting]
org.eclipse.gmf.runtime.common.ui.action (1.0.100.v20070601-1400) "GMF
Common UI Action" [Starting]
org.eclipse.gmf.runtime.common.ui.action.ide (1.0.1.v20070601-1400) "GMF
Common UI Action IDE" [Starting]
org.eclipse.gmf.runtime.common.ui.printing (1.0.1.v20070601-1400) "GMF
Printing" [Starting]
org.eclipse.gmf.runtime.common.ui.printing.win32 (1.0.2.v20070601-1400)
"GMF Printing for Win32" [Resolved]
org.eclipse.gmf.runtime.common.ui.services (1.0.100.v20070601-1400) "GMF
Common UI Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.action
(1.0.100.v20070601-1400) "GMF Common UI Action Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.dnd (1.0.1.v20070601-1400)
"GMF Common UI DND Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.dnd.ide
(1.0.1.v20070601-1400) "GMF Common UI DND IDE Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.properties
(1.0.1.v20070601-1400) "GMF Common UI Properties Service Framework"
[Starting]
org.eclipse.gmf.runtime.diagram.core (1.0.100.v20070601-1400) "GMF
Diagram Core" [Starting]
org.eclipse.gmf.runtime.diagram.ui (1.0.100.v20070621-0000) "GMF Diagram
UI" [Starting]
org.eclipse.gmf.runtime.diagram.ui.actions (1.0.100.v20070621-0000) "GMF
Diagram Actions" [Starting]
org.eclipse.gmf.runtime.diagram.ui.dnd (1.0.1.v20070601-1400) "GMF
Diagram Browse" [Starting]
org.eclipse.gmf.runtime.diagram.ui.geoshapes (1.0.1.v20070601-1400) "GMF
Geometric Shapes" [Starting]
org.eclipse.gmf.runtime.diagram.ui.printing (1.0.100.v20070621-0000)
"GMF Diagram Printing" [Starting]
org.eclipse.gmf.runtime.diagram.ui.printing.render
(1.0.1.v20070601-1400) "GMF Diagram UI Printing Render Plug-In" [Starting]
org.eclipse.gmf.runtime.diagram.ui.properties (1.0.100.v20070608-1300)
"GMF Diagram UI Properties" [Starting]
org.eclipse.gmf.runtime.diagram.ui.providers (1.0.100.v20070621-0000)
"GMF Diagram Providers" [Starting]
org.eclipse.gmf.runtime.diagram.ui.providers.ide (1.0.1.v20070601-1400)
"GMF Diagram Providers IDE" [Starting]
org.eclipse.gmf.runtime.diagram.ui.render (1.0.100.v20070621-0000) "GMF
Diagram UI Render Plug-In" [Starting]
org.eclipse.gmf.runtime.diagram.ui.resources.editor
(1.0.3.v20070601-1400) "GMF Diagram UI Resources Editor Plug-In" [Starting]
org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide
(1.0.3.v20070601-1400) "GMF IDE Editor" [Starting]
org.eclipse.gmf.runtime.draw2d.ui (1.0.100.v20070621-0000) "GMF Draw2d
Additions" [Starting]
org.eclipse.gmf.runtime.draw2d.ui.render (1.0.100.v20070614-1400) "GMF
Draw2d Image Rendering Additions" [Starting]
org.eclipse.gmf.runtime.draw2d.ui.render.awt (1.0.100.v20070614-1400)
"GMF Draw2d Image AWT based Rendering Additions" [Starting]
org.eclipse.gmf.runtime.emf.clipboard.core (1.0.100.v20070621-0000) "GMF
EMF Clipboard Support" [Starting]
org.eclipse.gmf.runtime.emf.commands.core (1.0.3.v20070601-1400) "GMF
Commands" [Starting]
org.eclipse.gmf.runtime.emf.core (1.0.100.v20070601-1400) "GMF Modeling
Service Layer" [Starting]
org.eclipse.gmf.runtime.emf.type.core (1.0.100.v20070601-1400) "GMF EMF
Type Core" [Starting]
org.eclipse.gmf.runtime.emf.type.ui (1.0.1.v20070601-1400) "GMF EMF Type
UI" [Starting]
org.eclipse.gmf.runtime.emf.ui (1.0.100.v20070621-0000) "GMF MSL UI"
[Starting]
org.eclipse.gmf.runtime.emf.ui.properties (1.0.2.v20070601-1400) "GMF
EMF UI Properties Providers" [Starting]
org.eclipse.gmf.runtime.gef.ui (1.0.1.v20070601-1400) "GMF GEF
Additions" [Starting]
org.eclipse.gmf.runtime.notation (1.0.100.v20070621-0000) "GMF Notation
Model Support" [Starting]
org.eclipse.gmf.runtime.notation.edit (1.0.1.v20070621-0000) "GMF
Notation Edit Support" [Starting]
org.eclipse.gmf.runtime.notation.providers (1.0.1.v20070601-1400) "GMF
Notation Metamodel" [Starting]
org.eclipse.gmf.sdk (1.0.0.v20070601-1400) "Graphical Modeling Framework
SDK" [Starting]
org.eclipse.gmf.tooldef (2.0.0.v20070621-0000) "GMF Tooling Model"
[Starting]
org.eclipse.gmf.tooldef.edit (2.0.0.v20070601-1400) "GMF Tooling Edit
Support" [Starting]
org.eclipse.gmf.validate (1.1.0.v20070621-0000) "GMF Validation" [Starting]
org.eclipse.gmf.xpand (1.0.0.v20070608-1300) "GMF Xpand Template Engine"
[Starting]
org.eclipse.help (3.3.0.v20070524) "Help System Core" [Active]
org.eclipse.help.appserver (3.1.200.v20070510) "Help Application Server"
[Starting]
org.eclipse.help.base (3.3.0.v20070606) "Help System Base" [Starting]
org.eclipse.help.ui (3.3.0.v20070530) "Help System UI" [Starting]
org.eclipse.help.webapp (3.3.0.v20070607) "Help System Webapp" [Starting]
org.eclipse.jdt (3.3.0.v20070607-1300) "Eclipse Java Development Tools"
[Resolved]
org.eclipse.jdt.apt.core (3.3.0.v20070607-1200) "Java Annotation
Processing Core" [Active]
org.eclipse.jdt.apt.pluggable.core (1.0.0.v20070529-2100) "Java Compiler
Apt IDE" [Starting]
org.eclipse.jdt.apt.ui (3.3.0.v20070430-1135) "Java Annotation
Processing UI" [Starting]
org.eclipse.jdt.compiler.apt (1.0.0.v20070510-2000) "Java Compiler Apt"
[Resolved]
org.eclipse.jdt.compiler.tool (1.0.0.v_771) "Java Compiler Tool Support"
[Resolved]
org.eclipse.jdt.core (3.3.0.v_771) "Java Development Tools Core" [Active]
org.eclipse.jdt.core.manipulation (1.1.0.v20070606-0010) "Java Code
Manipulation Functionality" [Active]
org.eclipse.jdt.debug (3.3.0.v20070530a) "JDI Debug Model" [Active]
org.eclipse.jdt.debug.ui (3.2.100.v20070531-1800) "JDI Debug UI" [Active]
org.eclipse.jdt.doc.isv (3.3.0.v20070613) "Eclipse JDT Plug-in Developer
Guide" [Starting]
org.eclipse.jdt.doc.user (3.3.0.v20070608-1300) "Eclipse Java
Development User Guide" [Starting]
org.eclipse.jdt.junit (3.3.0.v20070606-0010) "Java Development Tools
JUnit support" [Starting]
org.eclipse.jdt.junit.runtime (3.3.0.v20070606-0010) "Java Development
Tools JUnit runtime support" [Resolved]
org.eclipse.jdt.junit4.runtime (1.0.100.v20070606-0010) "Java
Development Tools JUnit4 runtime support" [Resolved]
org.eclipse.jdt.launching (3.3.0.v20070510) "Java Development Tools
Launching Support" [Active]
org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
"Eclipse Java Development Tools SDK" [Resolved]
org.eclipse.jdt.ui (3.3.0.v20070607-0010) "Java Development Tools UI"
[Active]
org.eclipse.jem.util (2.0.0.v200705302225) "Java EMF Model Utilities"
[Starting]
org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET" [Starting]
org.eclipse.jet.core (1.0.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET Core" [Starting]
org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET Documentation" [Starting]
org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling
Framework Technologies - JET Examples" [Starting]
org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET SDK" [Resolved]
org.eclipse.jet.ui (0.8.0.v200704041505) "JET Transformations UI
Plug-in" [Active]
org.eclipse.jface (3.3.0.I20070606-0010) "JFace" [Active]
org.eclipse.jface.databinding (1.1.0.I20070606-0010) "JFace Data Binding
for SWT and JFace" [Resolved]
org.eclipse.jface.text (3.3.0.v20070606-0010) "JFace Text" [Resolved]
org.eclipse.jsch.core (1.0.0.I20070426) "JSch Core" [Active]
org.eclipse.jsch.ui (1.0.0.I20070525) "JSch UI" [Starting]
org.eclipse.ltk.core.refactoring (3.3.0.v20070606-0010) "Refactoring
Core" [Active]
org.eclipse.ltk.ui.refactoring (3.3.0.v20070606-0010) "Refactoring UI"
[Active]
org.eclipse.mylyn (2.0.0.v20070910-1300) "Mylyn" [Starting]
org.eclipse.mylyn.bugzilla.core (2.0.0.v20070910-1300) "Mylyn Bugzilla
Connector Core" [Active]
org.eclipse.mylyn.bugzilla.ide (2.0.0.v20070910-1300) "Mylyn Bugzilla
Connector IDE" [Active]
org.eclipse.mylyn.bugzilla.ui (2.0.0.v20070910-1300) "Mylyn Bugzilla
Connector UI" [Active]
org.eclipse.mylyn.compatibility (2.0.0.v20070910-1300) "Java 5
Compatibility Checker" [Active]
org.eclipse.mylyn.context.core (2.0.0.v20070910-1300) "Mylyn Context
Core" [Active]
org.eclipse.mylyn.context.ui (2.0.0.v20070910-1300) "Mylyn Context UI"
[Active]
org.eclipse.mylyn.help.ui (2.0.0.v20070910-1300) "Mylyn Help" [Starting]
org.eclipse.mylyn.ide.ant (2.0.0.v20070910-1300) "Mylyn Ant UI Plug-in"
[Active]
org.eclipse.mylyn.ide.ui (2.0.0.v20070910-1300) "Mylyn IDE UI" [Active]
org.eclipse.mylyn.java.ui (2.0.0.v20070910-1300) "Mylyn Java" [Active]
org.eclipse.mylyn.monitor.core (2.0.0.v20070910-1300) "Mylyn Monitor
Core" [Resolved]
org.eclipse.mylyn.monitor.ui (2.0.0.v20070910-1300) "Mylyn Monitor UI"
[Active]
org.eclipse.mylyn.pde.ui (2.0.0.v20070910-1300) "Mylyn PDE UI Plug-in"
[Active]
org.eclipse.mylyn.resources.ui (2.0.0.v20070910-1300) "Mylyn Resources
UI" [Active]
org.eclipse.mylyn.sandbox.ui (2.0.0.v20070910-1300) "Mylyn Sandbox
Experimental UI" [Active]
org.eclipse.mylyn.tasks.core (2.0.0.v20070910-1300) "Mylyn Tasks Core"
[Active]
org.eclipse.mylyn.tasks.ui (2.0.0.v20070910-1300) "Mylyn Tasks UI" [Active]
org.eclipse.mylyn.team.cvs (2.0.0.v20070910-1300) "Mylyn Team CVS
Plug-in" [Resolved]
org.eclipse.mylyn.team.ui (2.0.0.v20070910-1300) "Mylyn Team UI" [Active]
org.eclipse.mylyn.trac.core (2.0.0.v20070910-1300) "Mylyn Trac Connector
Core" [Active]
org.eclipse.mylyn.trac.ui (2.0.0.v20070910-1300) "Mylyn Trac Connector
UI" [Active]
org.eclipse.mylyn.web.core (2.0.0.v20070910-1300) "Mylyn Web Core
Plug-in" [Active]
org.eclipse.mylyn.web.ui (2.0.0.v20070910-1300) "Mylyn Web UI" [Starting]
org.eclipse.ocl (1.1.0.v200706201508) "Object Constraint Language (OCL)
2.0 Parser/Interpreter" [Starting]
org.eclipse.ocl.ecore (1.1.0.v200706071450) "OCL 2.0 Binding for Ecore"
[Starting]
org.eclipse.ocl.uml (1.1.0.v200706071450) "OCL 2.0 Binding for UML"
[Starting]
org.eclipse.osgi (3.3.0.v20070530) "OSGi System Bundle" [Active]
org.eclipse.osgi.services (3.1.200.v20070605) "OSGi Release 4.0.1
Services" [Resolved]
org.eclipse.osgi.util (3.1.200.v20070605) "OSGi Release 4.0.1 Utility
Classes" [Resolved]
org.eclipse.pde (3.3.0.v20070608-1300) "Eclipse Plug-in Development
Environment" [Active]
org.eclipse.pde.build (3.3.0.v20070612) "Plug-in Development Environment
Build Support" [Starting]
org.eclipse.pde.core (3.3.0.v20070608-1300) "Plug-in Development Core"
[Active]
org.eclipse.pde.doc.user (3.3.0.v20070614-0800) "Eclipse Plug-in
Development User Guide" [Resolved]
org.eclipse.pde.junit.runtime (3.3.0.v20070608-1300) "PDE JUnit Plug-in
Test" [Resolved]
org.eclipse.pde.runtime (3.3.0.v20070608-1300) "Plug-in Development
Environment Runtime" [Starting]
org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
Plug-in Development Environment Developer Resources" [Resolved]
org.eclipse.pde.ui (3.3.0.v20070608-1300) "Plug-in Development UI" [Active]
org.eclipse.pde.ui.templates (3.3.0.v20070608-1300) "PDE Templates"
[Starting]
org.eclipse.platform (3.3.0.v20070613) "Eclipse Platform" [Starting]
org.eclipse.platform.doc.isv (3.3.0.v20070621) "Eclipse Platform Plug-in
Developer Guide" [Starting]
org.eclipse.platform.doc.user (3.3.0.I20070615-1300) "Eclipse Workbench
User Guide" [Starting]
org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
"Eclipse Platform Plug-in Developer Resources" [Resolved]
org.eclipse.platform.source.win32.win32.x86
(3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse Platform Plug-in
Developer Resources" [Resolved]
org.eclipse.rcp (3.2.0.v20070612) "Eclipse RCP" [Starting]
org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG)
"Eclipse RCP Plug-in Developer Resources" [Resolved]
org.eclipse.rcp.source.win32.win32.x86
(3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP Plug-in Developer
Resources" [Resolved]
org.eclipse.sdk (3.3.0.v20070613) "Eclipse Project SDK" [Starting]
org.eclipse.search (3.3.0.v20070606-0010) "Search Support" [Active]
org.eclipse.swt (3.3.0.v3346) "Standard Widget Toolkit" [Resolved]
org.eclipse.swt.win32.win32.x86 (3.3.0.v3346) "Standard Widget Toolkit
for Windows" [Resolved]
org.eclipse.team.core (3.3.0.I20070607) "Team Support Core" [Active]
org.eclipse.team.cvs.core (3.3.0.I20070607) "CVS Team Provider Core"
[Active]
org.eclipse.team.cvs.ssh (3.2.100.I20061208) "CVS SSH Core" [Starting]
org.eclipse.team.cvs.ssh2 (3.2.100.I20070604) "CVS SSH2" [Starting]
org.eclipse.team.cvs.ui (3.3.0.I20070607) "CVS Team Provider UI" [Active]
org.eclipse.team.ui (3.3.0.I20070607) "Team Support UI" [Active]
org.eclipse.text (3.3.0.v20070606-0010) "Text" [Resolved]
org.eclipse.tomcat (4.1.230.v20070531) "Tomcat Wrapper" [Starting]
org.eclipse.ui (3.3.0.I20070614-0800) "Eclipse UI" [Active]
org.eclipse.ui.browser (3.2.100.v20070524A) "Browser Support" [Starting]
org.eclipse.ui.console (3.2.0.v20070530) "Console" [Active]
org.eclipse.ui.editors (3.3.0.v20070606-0010) "Default Text Editor" [Active]
org.eclipse.ui.externaltools (3.1.200.v20070416) "External Tools" [Active]
org.eclipse.ui.forms (3.3.0.v20070511) "Eclipse Forms" [Active]
org.eclipse.ui.cheatsheets (3.3.0.v20070507) "Cheat Sheets" [Starting]
org.eclipse.ui.ide (3.3.0.I20070620) "Eclipse IDE UI" [Active]
org.eclipse.ui.ide.application (1.0.0.I20070530-0100) "Eclipse IDE UI
Application" [Resolved]
org.eclipse.ui.intro (3.2.100.v20070530) "Welcome Framework" [Starting]
org.eclipse.ui.intro.universal (3.2.100.v20070530A) "Universal Welcome"
[Starting]
org.eclipse.ui.navigator (3.3.0.I20070605-0010) "Common Navigator View"
[Starting]
org.eclipse.ui.navigator.resources (3.3.0.I20070605-0010) "Navigator
Workbench Components" [Starting]
org.eclipse.ui.net (1.0.0.I20070516) "Internet Connection Management UI"
[Active]
org.eclipse.ui.presentations.r21 (3.2.100.I20070605-0010) "R21
Presentation Plug-in" [Starting]
org.eclipse.ui.views (3.2.100.I20070319-0010) "Views" [Active]
org.eclipse.ui.views.properties.tabbed (3.3.0.I20070605-0010) "Tabbed
Properties View" [Starting]
org.eclipse.ui.win32 (3.2.100.I20070319-0010) "Eclipse UI Win32
Enhancements" [Resolved]
org.eclipse.ui.workbench (3.3.0.I20070608-1100) "Workbench" [Active]
org.eclipse.ui.workbench.compatibility (3.2.0.I20070319-0010) "Workbench
Compatibility" [Resolved]
org.eclipse.ui.workbench.texteditor (3.3.0.v20070606-0010) "Text Editor
Framework" [Active]
org.eclipse.uml2 (2.1.0.v200706251652) "UML2" [Resolved]
org.eclipse.uml2.codegen.ecore (1.3.0.v200706251652) "UML2 Ecore Code
Generation" [Starting]
org.eclipse.uml2.codegen.ecore.ui (1.3.0.v200706251652) "UML2 Ecore Code
Generation UI" [Starting]
org.eclipse.uml2.common (1.3.0.v200706251652) "UML2 Common" [Starting]
org.eclipse.uml2.common.edit (1.3.0.v200706251652) "UML2 Common Edit
Support" [Starting]
org.eclipse.uml2.uml (2.1.0.v200706251652) "UML2 UML Model" [Starting]
org.eclipse.uml2.uml.ecore.exporter (2.1.0.v200706251652) "UML2 UML
Exporter for EMF" [Starting]
org.eclipse.uml2.uml.ecore.importer (2.1.0.v200706251652) "UML2 UML
Importer for EMF" [Starting]
org.eclipse.uml2.uml.edit (2.1.0.v200706251652) "UML2 UML Edit Support"
[Starting]
org.eclipse.uml2.uml.editor (2.1.0.v200706251652) "UML2 UML Editor"
[Starting]
org.eclipse.uml2.uml.resources (2.1.0.v200706251652) "UML2 UML
Resources" [Resolved]
org.eclipse.update.configurator (3.2.100.v20070615) "Install/Update
Configurator" [Active]
org.eclipse.update.core (3.2.100.v20070615) "Install/Update Core" [Active]
org.eclipse.update.core.win32 (3.2.100.v20070615) "Install/Update Core
for Windows" [Resolved]
org.eclipse.update.scheduler (3.2.100.v20070615) "Automatic Updates
Scheduler" [Active]
org.eclipse.update.ui (3.2.100.v20070615) "Install/Update UI" [Starting]
org.eclipse.wst (1.0.2.v200706120315) "Web Standard Tools (WST)" [Resolved]
org.eclipse.wst.command.env (1.0.203.v200705302225) "Environment Command
Framework (headless)" [Starting]
org.eclipse.wst.command.env.core (1.0.202.v200705302225) "Environment
Command Framework (core)" [Resolved]
org.eclipse.wst.command.env.doc.user (1.5.1.v200706120315) "Web services
Axis Ant task documentation" [Starting]
org.eclipse.wst.command.env.infopop (1.0.3.v200706110217) "Web services
UI" [Starting]
org.eclipse.wst.command.env.ui (1.0.202.v200705302225) "Environment
Command Framework (GUI)" [Starting]
org.eclipse.wst.common_core.feature.source
(2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools -
Common Core Source" [Resolved]
org.eclipse.wst.common_ui.feature.source
(2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
Common UI Source" [Resolved]
org.eclipse.wst.common.core (1.1.101.v200706120315) "WST Common Core
Plug-in" [Starting]
org.eclipse.wst.common.emf (1.1.103.v200706071630) "EMF Utilities"
[Starting]
org.eclipse.wst.common.emfworkbench.integration (1.1.103.v200706071630)
"EMF Workbench Edit Plug-in" [Starting]
org.eclipse.wst.common.environment (1.0.200.v200705302225) "Enviornment
Plug-in" [Starting]
org.eclipse.wst.common.frameworks (1.1.102.v200706071630) "Common
Frameworks" [Starting]
org.eclipse.wst.common.frameworks.ui (1.1.100.v200706071630) "WTP UI
Plug-in" [Starting]
org.eclipse.wst.common.infopop (1.0.2.v200706110217) "Common WST
infopops" [Starting]
org.eclipse.wst.common.modulecore (1.1.102.v200706071630) "Modulecore
Plug-in" [Starting]
org.eclipse.wst.common.project.facet.core (1.2.0.v200706071740) "Project
Facet Core" [Starting]
org.eclipse.wst.common.project.facet.ui (1.2.0.v200706071742) "Project
Facet UI" [Starting]
org.eclipse.wst.common.snippets (1.1.101.v200705302225) "Snippets View"
[Starting]
org.eclipse.wst.common.ui (1.1.200.v200705302225) "Eclipse Base UI
extensions" [Starting]
org.eclipse.wst.common.ui.properties (1.0.102.v200706120315) "Common
Properties UI" [Starting]
org.eclipse.wst.common.uriresolver (1.1.201.v200705302225) "Common URI
Resolver Framework" [Starting]
org.eclipse.wst.css.core (1.1.101.v200705302225) "Structured Source CSS
Model" [Starting]
org.eclipse.wst.css.ui (1.0.201.v200705302225) "SSE CSS Source Editor"
[Starting]
org.eclipse.wst.doc.isv (1.0.304.v200706112015) "WST ISV Documentation"
[Starting]
org.eclipse.wst.doc.user (1.1.0.v200705302225) "Master User Doc TOC"
[Starting]
org.eclipse.wst.dtd.core (1.1.101.v200705302225) "Structured Source DTD
Core" [Starting]
org.eclipse.wst.dtd.ui (1.0.201.v200705302225) "SSE DTD Source Editor"
[Starting]
org.eclipse.wst.dtd.ui.infopop (1.0.2.v200706110217) "DTD Editor
infopops" [Resolved]
org.eclipse.wst.dtdeditor.doc.user (1.0.300.v200705302225) "DTD Editor
documentation" [Resolved]
org.eclipse.wst.html.core (1.1.101.v200706120811) "Structured Source
HTML Model" [Starting]
org.eclipse.wst.html.ui (1.0.201.v200705302225) "HTML UI Source Editor"
[Starting]
org.eclipse.wst.html.ui.infopop (1.0.2.v200706110217) "HTML editor
infopops" [Resolved]
org.eclipse.wst.internet.cache (1.0.201.v200705302225) "Cache URI
Resolver Plug-in" [Starting]
org.eclipse.wst.internet.monitor.core (1.0.203.v20070608) "Monitor"
[Starting]
org.eclipse.wst.internet.monitor.ui (1.0.203.v20070608) "TCP/IP Monitor"
[Starting]
org.eclipse.wst.javascript.core (1.0.101.v200706071955) "Structured
Source JavaScript Model" [Starting]
org.eclipse.wst.javascript.ui (1.0.101.v200705302225) "SSE JavaScript
Source Editor" [Starting]
org.eclipse.wst.javascript.ui.infopop (1.0.2.v200706110217) "Javascript
infopop" [Resolved]
org.eclipse.wst.server_core.feature.source
(2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server
Core Source" [Resolved]
org.eclipse.wst.server_ui.feature.source
(2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
Server UI Source" [Resolved]
org.eclipse.wst.server.core (1.0.204.v200706111751) "Server Core" [Starting]
org.eclipse.wst.server.http.core (1.0.0.v200705302225) "HTTP Server
Support" [Starting]
org.eclipse.wst.server.http.ui (1.0.0.v200705302225) "HTTP Server UI
Support" [Starting]
org.eclipse.wst.server.preview (1.0.0.v200705302225) "Preview Server
Support" [Starting]
org.eclipse.wst.server.preview.adapter (1.0.0.v200705302225) "HTTP
Preview Support" [Starting]
org.eclipse.wst.server.ui (1.0.204.v20070619) "Server UI" [Starting]
org.eclipse.wst.server.ui.doc.user (1.0.303.v200705302225) "Server Tools
documentation for Web Standard Tools" [Starting]
org.eclipse.wst.server.ui.infopop (1.0.5.v200705302225) "Server Tools
infopops for Web Standard Tools" [Resolved]
org.eclipse.wst.sse.core (1.1.201.v200706212223) "Structured Text Model"
[Starting]
org.eclipse.wst.sse.doc.user (1.0.300.v200705302225) "Structured text
editor and snippets documentation" [Resolved]
org.eclipse.wst.sse.ui (1.0.302.v200706192034) "Structured Source
Editor" [Starting]
org.eclipse.wst.sse.ui.infopop (1.0.102.v200706110217) "SSE infopops"
[Resolved]
org.eclipse.wst.standard.schemas (1.0.1.v200705302225) "Standard Schemas
and DTDs" [Resolved]
org.eclipse.wst.validation (1.1.101.v200706071630) "Validation
Framework" [Starting]
org.eclipse.wst.validation.infopop (1.0.202.v200706110217) "WST
validation infopop plug-in" [Resolved]
org.eclipse.wst.validation.ui (1.1.102.v200706071630) "Validation
Framework UI" [Starting]
org.eclipse.wst.web (1.1.101.v200706071630) "Simple Web Plug-in" [Starting]
org.eclipse.wst.web_core.feature.source
(2.0.0.v200706041905-42CI_kE77Y7TAMAVHH) "Web Standard Tools - Web Core
Source" [Resolved]
org.eclipse.wst.web_ui.feature.source
(2.0.0.v200706041905-7A0EAeCiWfEJsCcbAj88SKfRX) "Web Standard Tools -
Web UI Source" [Resolved]
org.eclipse.wst.web.ui (1.1.101.v200706071630) "Simple Web UI Plug-in"
[Starting]
org.eclipse.wst.web.ui.infopop (1.0.202.v200706110217) "Static Web
infopop" [Starting]
org.eclipse.wst.webtools.doc.user (1.0.300.v200705302225) "Web tools
documentation" [Starting]
org.eclipse.wst.ws (1.0.202.v200705311823) "Web Services" [Starting]
org.eclipse.wst.ws_core.feature.source
(2.0.0.v200706210215-7E7KE_QEC3wSU4TpiAiQ0r) "Web Standard Tools - Web
Service Core Source" [Resolved]
org.eclipse.wst.ws_ui.feature.source
(2.0.0.v200706041905-791ECBAufYO8_EaomWE4Fe3uXjR1) "Web Standard Tools -
Web Service UI Source" [Resolved]
org.eclipse.wst.ws.explorer (1.0.204.v200706061845) "Web Services
Explorer" [Starting]
org.eclipse.wst.ws.infopop (1.0.203.v200706110217) "Web Services UI"
[Starting]
org.eclipse.wst.ws.parser (1.0.201.v200706061845) "Web Services
Description Parser" [Starting]
org.eclipse.wst.ws.ui (1.0.202.v200705311823) "Web Services UI" [Starting]
org.eclipse.wst.wsdl (1.1.0.v200706062140) "WSDL Model" [Starting]
org.eclipse.wst.wsdl.ui (1.2.0.v200706062140) "WSDL UI" [Starting]
org.eclipse.wst.wsdl.ui.doc.user (1.0.300.v200705302225) "WSDL Editor
Documentation" [Starting]
org.eclipse.wst.wsdl.validation (1.1.201.v200706062140) "WSDL Validator"
[Starting]
org.eclipse.wst.wsi (1.0.105.v200706120315) "WSI Conformance Tools"
[Starting]
org.eclipse.wst.wsi.ui (1.0.300.v200706062140) "Soap Monitor" [Starting]
org.eclipse.wst.wsi.ui.doc.user (1.0.203.v200706120315) "WS-I Validation
Documentation" [Resolved]
org.eclipse.wst.xml_core.feature.source
(2.0.0.v200706041905-787BE9zCYQCCz-CnUGLYQV) "Web Standard Tools - XML
Core Source" [Resolved]
org.eclipse.wst.xml_ui.feature.source
(2.0.0.v200706182145-7A1ECBCnbckz0bZu9wHqAKN3mYpZ) "Web Standard Tools -
XML UI Source" [Resolved]
org.eclipse.wst.xml.core (1.1.200.v200706120811) "Structured Source XML
Model" [Starting]
org.eclipse.wst.xml.ui (1.0.300.v200705302225) "XML UI Plugin" [Starting]
org.eclipse.wst.xml.ui.infopop (1.0.2.v200706110217) "XML infopops"
[Resolved]
org.eclipse.wst.xmleditor.doc.user (1.0.300.v200705302225) "XML editor"
[Resolved]
org.eclipse.wst.xsd.core (1.1.200.v200705302225) "XSD Core Plugin"
[Starting]
org.eclipse.wst.xsd.ui (1.2.0.v200706131840) "XML Schema Editor" [Starting]
org.eclipse.wst.xsdeditor.doc.user (1.0.300.v200705302225) "XML schema
editor" [Resolved]
org.eclipse.xsd (2.3.0.v200706262000) "XML Schema Infoset Model (XSD)&qu
Re: Eclipse timeline plugin [message #28321 is a reply to message #28233] Thu, 13 September 2007 12:42 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

I found that the plugin org.eclipse.equinox.http did not start.
Can you open eclipse with osgi console, and try to start plugin
org.eclipse.equinox.http manually to see what happen?

"Kim Sullivan" <alicebot@seznam.cz> wrote in message
news:fcas2t$u23$1@build.eclipse.org...
> Jay Chen wrote:
>> Do you install the org.eclipse.equinox.http?
>>
>> I recommend you to install it use the update site
>> http://eclipsetimeline.googlecode.com/svn/updates, it can resolved the
>> dependcy issue.
>>
>> If it still can't work, plz post your eclipse configuration details.
>
> Yes, I originally installed it using the update site, and some dependency
> got resolved (I think Eclipse Project Equinox bundle feature). Here are my
> configuration details (the only unusual thing would be using the mylyn dev
> builds instead of the release or the milestone... the activity.xml file
> has changed since the Europa release).
>
> *** Platform Details:
>
> *** System properties:
> awt.toolkit=sun.awt.windows.WToolkit
> eclipse.buildId=I20070323-1616
> eclipse.commands=-os
> win32
> -ws
> win32
> -arch
> x86
> -showsplash
> -launcher
> D:\Progs\eclipse\eclipse.exe
> -name
> Eclipse
> --launcher.library
> D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher.win32. win32.x86_1.0.0.v20070523\eclipse_1017a.dll
> -startup
> D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0. v20070606.jar
> -Dorg.osgi.service.http.port=2001
> -vm
> C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
> eclipse.ee.install.verify=false
> eclipse.product=org.eclipse.sdk.ide
> eclipse.startTime=1189671460687
> eclipse.vm=C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
> eclipse.vmargs=-Xmx256M
> -XX:MaxPermSize=256m
> -Djava.class.path=D:\Progs\eclipse\plugins\org.eclipse.equin ox.launcher_1.0.0.v20070606.jar
> eof=eof
> file.encoding=Cp1250
> file.encoding.pkg=sun.io
> file.separator=\
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
> java.awt.printerjob=sun.awt.windows.WPrinterJob
> java.class.path=D:\Progs\eclipse\plugins\org.eclipse.equinox .launcher_1.0.0.v20070606.jar
> java.class.version=50.0
> java.endorsed.dirs=C:\Program Files\Java\jre1.6.0_02\lib\endorsed
> java.ext.dirs=C:\Program
> Files\Java\jre1.6.0_02\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
> java.home=C:\Program Files\Java\jre1.6.0_02
> java.io.tmpdir=C:\DOCUME~1\User\LOCALS~1\Temp\
> java.library.path=D:\Progs\eclipse;.;C:\WINDOWS\Sun\Java\bin ;C:\WINDOWS\system32;C:\WINDOWS;C:\Program
> Files\Java\jre1.6.0_02\bin\client;C:\Program
> Files\Java\jre1.6.0_02\bin;E:\cygwin\bin\;D:\Progs\MinGW\bin ;D:\Progs\Python24\.;D:\Program
> Files\Borland\BDS\3.0\Bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ WINDOWS\System32\Wbem;D:\Program
> Files\Common
> Files\GTK\2.0\bin;D:\progs\PHP\;d:\progs\svn\bin\;"C:\Progra~1\Java\jdk1.6.0 "\bin;d:\Progs\ant\bin;D:\Program
> Files\WinSCP\;D:\Progs\svk-2.0.0-1\bin;D:\My Documents\Borland Studio
> Projects\Bpl;D:\Modeltech_xe_starter\win32xoem;D:\Program Files\MKVtoolnix
> java.runtime.name=Java(TM) SE Runtime Environment
> java.runtime.version=1.6.0_02-b06
> java.specification.name=Java Platform API Specification
> java.specification.vendor=Sun Microsystems Inc.
> java.specification.version=1.6
> java.vendor=Sun Microsystems Inc.
> java.vendor.url=http://java.sun.com/
> java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
> java.version=1.6.0_02
> java.vm.info=mixed mode
> java.vm.name=Java HotSpot(TM) Client VM
> java.vm.specification.name=Java Virtual Machine Specification
> java.vm.specification.vendor=Sun Microsystems Inc.
> java.vm.specification.version=1.0
> java.vm.vendor=Sun Microsystems Inc.
> java.vm.version=1.6.0_02-b06
> line.separator=
>
> org.apache.commons.logging.Log=org.apache.commons.logging.im pl.SimpleLog
> org.apache.commons.logging.simplelog.log.httpclient.wire.hea der=off
> org.apache.commons.logging.simplelog.log.org.apache.commons. httpclient=off
> org.eclipse.equinox.launcher.splash.handle=32375712
> org.eclipse.equinox.launcher.splash.location=d:\Progs\eclips e\plugins\org.eclipse.platform_3.3.0.v20070613\splash.bmp
> org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSG i/Minimum-1.1,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,Ja vaSE-1.6
> org.osgi.framework.language=cs
> org.osgi.framework.os.name=WindowsXP
> org.osgi.framework.os.version=5.1
> org.osgi.framework.processor=x86
> org.osgi.framework.system.packages=javax.accessibility,javax .activation,javax.activity,javax.annotation,javax.annotation .processing,javax.crypto,javax.crypto.interfaces,javax.crypt o.spec,javax.imageio,javax.imageio.event,javax.imageio.metad ata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,jav ax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap ,javax.lang.model,javax.lang.model.element,javax.lang.model. type,javax.lang.model.util,javax.management,javax.management .loading,javax.management.modelmbean,javax.management.monito r,javax.management.openmbean,javax.management.relation,javax .management.remote,javax.management.remote.rmi,javax.managem ent.timer,javax.naming,javax.naming.directory,javax.naming.e vent,javax.naming.ldap,javax.naming.spi,javax.net,javax.net. ssl,javax.print,javax.print.attribute,javax.print.attribute. standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.r mi.ssl,javax.script,javax.security.auth,javax.security.auth. callback,javax.security.auth.
> kerberos,javax.security.auth.login,javax.security.auth.spi,j avax.security.auth.x500,javax.security.cert,javax.security.s asl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sample d,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.s ql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swin g.border,javax.swing.colorchooser,javax.swing.event,javax.sw ing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,java x.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.s ynth,javax.swing.table,javax.swing.text,javax.swing.text.htm l,javax.swing.text.html.parser,javax.swing.text.rtf,javax.sw ing.tree,javax.swing.undo,javax.tools,javax.transaction,java x.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.ann otation,javax.xml.bind.annotation.adapters,javax.xml.bind.at tachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xm l.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xm l.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.cr ypto.dsig.spec,javax.xml.datat
> ype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,jav ax.xml.stream,javax.xml.stream.events,javax.xml.stream.util, javax.xml.transform,javax.xml.transform.dom,javax.xml.transf orm.sax,javax.xml.transform.stax,javax.xml.transform.stream, javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax .xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,jav ax.xml.ws.spi,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,or g.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.Dyn AnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,o rg.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNa ming.NamingContextExtPackage,org.omg.CosNaming.NamingContext Package,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAn y.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org. omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPac kage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.P ortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer ,org.omg.PortableServer.Curren
> tPackage,org.omg.PortableServer.POAManagerPackage,org.omg.Po rtableServer.POAPackage,org.omg.PortableServer.portable,org. omg.PortableServer.ServantLocatorPackage,org.omg.SendingCont ext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap, org.w3c.dom.events,org.w3c.dom.ls,org.xml.sax,org.xml.sax.ex t,org.xml.sax.helpers
> org.osgi.framework.vendor=Eclipse
> org.osgi.framework.version=1.4.0
> org.osgi.supports.framework.extension=true
> org.osgi.supports.framework.fragment=true
> org.osgi.supports.framework.requirebundle=true
> os.arch=x86
> os.name=Windows XP
> os.version=5.1
> osgi.arch=x86
> osgi.bundles=org.eclipse.equinox.common@2:start,
> org.eclipse.update.configurator@3:start, org.eclipse.core.runtime@start
> osgi.bundlestore=D:\Progs\eclipse\configuration\org.eclipse. osgi\bundles
> osgi.compatibility.bootdelegation=true
> osgi.configuration.area=file:/D:/Progs/eclipse/configuration /
> osgi.framework=file:/d:/Progs/eclipse/plugins/org.eclipse.os gi_3.3.0.v20070530.jar
> osgi.framework.beginningstartlevel=1
> osgi.framework.shape=jar
> osgi.framework.version=3.3.0.v20070530
> osgi.install.area=file:/D:/Progs/eclipse/
> osgi.instance.area=file:/D:/.projects/ibm/eclipse-workspace/
> osgi.instance.area.default=file:/D:/.windows/workspace/
> osgi.logfile=D:\.projects\ibm\eclipse-workspace\.metadata\.l og
> osgi.manifest.cache=D:\Progs\eclipse\configuration\org.eclip se.osgi\manifests
> osgi.nl=cs_CZ
> osgi.os=win32
> osgi.splashLocation=d:\Progs\eclipse\plugins\org.eclipse.pla tform_3.3.0.v20070613\splash.bmp
> osgi.splashPath=platform:/base/plugins/org.eclipse.platform
> osgi.syspath=d:\Progs\eclipse\plugins
> osgi.ws=win32
> path.separator=;
> sun.arch.data.model=32
> sun.boot.class.path=C:\Program
> Files\Java\jre1.6.0_02\lib\resources.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\rt.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\sunrsasign.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\jsse.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\jce.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\charsets.jar;C:\Program
> Files\Java\jre1.6.0_02\classes
> sun.boot.library.path=C:\Program Files\Java\jre1.6.0_02\bin
> sun.cpu.endian=little
> sun.cpu.isalist=
> sun.desktop=windows
> sun.io.unicode.encoding=UnicodeLittle
> sun.jnu.encoding=Cp1250
> sun.management.compiler=HotSpot Client Compiler
> sun.os.patch.level=Service Pack 2
> user.country=CZ
> user.dir=D:\Progs\eclipse
> user.home=D:\.windows
> user.language=cs
> user.name=User
> user.timezone=Europe/Prague
> user.variant=
>
> *** Features:
> org.eclipse.cvs (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS Client"
> org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
> Client SDK"
> org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
> org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code
> Generator"
> org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
> Generation"
> org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
> Generation UI"
> org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
> Generator UI"
> org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common"
> org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI"
> org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert
> Support"
> org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Programmers Guide"
> org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore"
> org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit Support"
> org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
> org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit"
> org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI"
> org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping "
> org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
> Framework (EMF) - org.eclipse.emf.mapping.ecore"
> org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
> Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor"
> org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI"
> org.eclipse.emf.ocl (1.1.0.v200706071450-10-7w311817312619) "Object
> Constraint Language (OCL) 2.0 Compatibility API"
> org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
> Technology Query Framework"
> org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
> Framework Technology Query OCL"
> org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Source"
> org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Transaction Core"
> org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Model Validation Core"
> org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Validation Support for OCL"
> org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Workbench Core"
> org.eclipse.gef (3.3.0.v20070620) "Graphical Editing Framework"
> org.eclipse.gmf (1.0.100.v20070601-1400-7d-ETeEYjiMWQX3az0fBWRjypkm7)
> "Graphical Modeling Framework"
> org.eclipse.jdt (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR) "Eclipse
> Java Development Tools"
> org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
> "Eclipse Java Development Tools SDK"
> org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET"
> org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Documentation"
> org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Examples"
> org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET SDK"
> org.eclipse.mylyn_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.bugzilla_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.context_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.ide_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.java_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.pde_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.sandbox.ui_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.trac_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.ocl (1.1.0.v200706071450-32-9oA55P5M8C8KCK) "Object Constraint
> Language (OCL) 2.0 Parser/Interpreter"
> org.eclipse.ocl.uml (1.1.0.v200706071450-10-7w311817182561) "OCL 2.0
> Binding for UML"
> org.eclipse.pde (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse Plug-in
> Development Environment"
> org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
> Plug-in Development Environment Developer Resources"
> org.eclipse.platform (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse
> Platform"
> org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
> "Eclipse Platform Plug-in Developer Resources"
> org.eclipse.rcp (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP"
> org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse
> RCP Plug-in Developer Resources"
> org.eclipse.sdk (3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO) "Eclipse
> Project SDK"
> org.eclipse.uml2 (2.1.0.v200706251652) "UML2"
> org.eclipse.wst (2.0.0.v200706041905-7C-18k0IWJZ93WDDJlQ60nUjTdJp) "Web
> Standard Tools (WST)"
> org.eclipse.wst.common_core.feature.source
> (2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools - Common
> Core Source"
> org.eclipse.wst.common_ui.feature.source
> (2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
> Common UI Source"
> org.eclipse.wst.sdk (2.0.0.v200706041905-7E-18aNKbx2jys2HTkz0_f_9fLWx)
> "Web Standard Tools (WST)"
> org.eclipse.wst.server_core.feature.source
> (2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server Core
> Source"
> org.eclipse.wst.server_ui.feature.source
> (2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
> Server UI Source"
> org.eclipse.wst.web_core.feature.source
> (2.0.0.v200706041905-42CI_kE77Y7TAMAVHH) "Web Standard Tools - Web Core
> Source"
> org.eclipse.wst.web_ui.feature.source
> (2.0.0.v200706041905-7A0EAeCiWfEJsCcbAj88SKfRX) "Web Standard Tools - Web
> UI Source"
> org.eclipse.wst.ws_core.feature.source
> (2.0.0.v200706210215-7E7KE_QEC3wSU4TpiAiQ0r) "Web Standard Tools - Web
> Service Core Source"
> org.eclipse.wst.ws_ui.feature.source
> (2.0.0.v200706041905-791ECBAufYO8_EaomWE4Fe3uXjR1) "Web Standard Tools -
> Web Service UI Source"
> org.eclipse.wst.xml_core.feature.source
> (2.0.0.v200706041905-787BE9zCYQCCz-CnUGLYQV) "Web Standard Tools - XML
> Core Source"
> org.eclipse.wst.xml_ui.feature.source
> (2.0.0.v200706182145-7A1ECBCnbckz0bZu9wHqAKN3mYpZ) "Web Standard Tools -
> XML UI Source"
> org.eclipse.xsd (2.3.0.v200706262000) "XML Schema Infoset Model (XSD)"
> org.eclipse.xsd.edit (2.3.0.v200706262000) "XML Schema Edit Framework"
> org.tigris.subversion.subclipse (1.2.3) "SVN Team Provider Core"
>
> *** Plug-in Registry:
> com.ibm.icu (3.6.1.v20070417) "International Components for Unicode for
> Java (ICU4J)" [Active]
> com.ibm.icu.source (3.6.1.v20070417) "International Components for Unicode
> for Java (ICU4J) source plug-in" [Resolved]
> com.ibm.icu36.data.update (3.6.1.v20070701_2007f) "ICU4J Data Update
> Fragment" [Resolved]
> com.jcraft.jsch (0.1.31) "JSch" [Resolved]
> eclipse.timeline (1.0.0.200709051757) "Timeline Plug-in" [Starting]
> eclipse.timeline.mylyn (1.0.0.200709051757) "Mylyn Tasks Event Source
> Plug-in" [Starting]
> eclipse.timeline.xml (1.0.0.200709051757) "Xml Event Source Plug-in"
> [Starting]
> javax.servlet (2.4.0.v200706111738) "Servlet API Bundle" [Resolved]
> javax.servlet.jsp (2.0.0.v200706191603) "Java Server Pages API Bundle"
> [Resolved]
> javax.servlet.jsp.source (2.0.0.v200706191603) "Java Server Pages API
> Source Bundle" [Resolved]
> javax.servlet.source (2.4.0.v200706111738) "Servlet API Source Bundle"
> [Resolved]
> javax.wsdl (1.4.0.v200706111329) "WSDL4J" [Resolved]
> javax.wsdl15 (1.5.1.v200705290614) "WSDL4J" [Resolved]
> javax.xml.rpc (1.1.0.v200706111329) "JAX-RPC" [Resolved]
> javax.xml.soap (1.2.0.v200706111329) "SAAJ" [Resolved]
> net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200706111738) "SourceForge LPG"
> [Resolved]
> net.sourceforge.lpg.lpgjavaruntime.source (1.1.0.v200706111738)
> "SourceForge LPG Source Bundle" [Resolved]
> org.apache.ant (1.7.0.v200706080842) "Apache Ant" [Resolved]
> org.apache.ant.source (1.7.0.v200706080842) "Apache Ant Source" [Resolved]
> org.apache.axis (1.4.0.v200706191647) "Apache Web Services" [Resolved]
> org.apache.batik.bridge (1.6.0.v200706111724) "Apache Batik
> Bridge/GVT/Scripting" [Resolved]
> org.apache.batik.css (1.6.0.v200706111724) "Apache Batik CSS" [Resolved]
> org.apache.batik.dom (1.6.0.v200706111724) "Apache Batik DOM" [Resolved]
> org.apache.batik.dom.svg (1.6.0.v200706111724) "Apache Batik SVG DOM"
> [Resolved]
> org.apache.batik.ext.awt (1.6.0.v200706111724) "Apache Batik AWT
> Utilities" [Resolved]
> org.apache.batik.parser (1.6.0.v200706111724) "Apache Batik Parser"
> [Resolved]
> org.apache.batik.svggen (1.6.0.v200706111724) "Apache Batik SVG
> Generation" [Resolved]
> org.apache.batik.transcoder (1.6.0.v200706111724) "Apache Batik
> Transcoder" [Resolved]
> org.apache.batik.util (1.6.0.v200706111724) "Apache Batik Utilities"
> [Resolved]
> org.apache.batik.util.gui (1.6.0.v200706111724) "Apache Batik GUI
> Utilities" [Resolved]
> org.apache.batik.xml (1.6.0.v200706111724) "Apache Batik XML" [Resolved]
> org.apache.commons.discovery (0.2.0.v200706111329) "Jakarta-Commons
> Discovery" [Resolved]
> org.apache.commons.el (1.0.0.v200706111724) "Apache Commons JSP 2.0
> Expression Language Interpreter" [Resolved]
> org.apache.commons.el.source (1.0.0.v200706111724) "Apache Commons JSP 2.0
> Expression Language Interpreter Source" [Resolved]
> org.apache.commons.logging (1.0.4.v200706111724) "Apache Commons Logging
> Plug-in" [Resolved]
> org.apache.commons.logging.source (1.0.4.v200706111724) "Apache Commons
> Logging Plug-in Source" [Resolved]
> org.apache.jasper (5.5.17.v200706111724) "Apache Jasper 2 Plug-in"
> [Resolved]
> org.apache.jasper.source (5.5.17.v200706111724) "Apache Jasper 2 Source
> Plug-in" [Resolved]
> org.apache.log4j (1.2.13.v200706111418) "Apache Jakarta log4j Plug-in"
> [Resolved]
> org.apache.lucene (1.9.1.v200706111724) "Apache Lucene" [Resolved]
> org.apache.lucene.analysis (1.9.1.v200706181610) "Apache Lucene Analysis"
> [Resolved]
> org.apache.lucene.analysis.source (1.9.1.v200706181610) "Apache Lucene
> Analysis Source" [Resolved]
> org.apache.lucene.source (1.9.1.v200706111724) "Apache Lucene Source"
> [Resolved]
> org.apache.wsil4j (1.0.0.v200706111329) "WSIL4J" [Resolved]
> org.apache.xerces (2.8.0.v200705301630) "Apache Xerces-J" [Resolved]
> org.apache.xml.resolver (1.1.0.v200705310020) "Apache XmlResolver"
> [Resolved]
> org.eclipse.ant.core (3.1.200.v20070522) "Ant Build Tool Core" [Starting]
> org.eclipse.ant.ui (3.2.100.v20070511) "Ant UI" [Active]
> org.eclipse.compare (3.3.0.I20070606) "Compare Support" [Active]
> org.eclipse.core.boot (3.1.100.v20060603) "Core Boot" [Starting]
> org.eclipse.core.commands (3.3.0.I20070605-0010) "Commands" [Resolved]
> org.eclipse.core.contenttype (3.2.100.v20070319) "Eclipse Content
> Mechanism" [Active]
> org.eclipse.core.databinding (1.0.0.I20070606-0010) "JFace Data Binding"
> [Resolved]
> org.eclipse.core.databinding.beans (1.0.0.I20070606-0010) "JFace Data
> Binding for JavaBeans" [Resolved]
> org.eclipse.core.expressions (3.3.0.v20070606-0010) "Expression Language"
> [Active]
> org.eclipse.core.filebuffers (3.3.0.v20070606-0010) "File Buffers"
> [Active]
> org.eclipse.core.filesystem (1.1.0.v20070606) "Core File Systems" [Active]
> org.eclipse.core.filesystem.win32.x86 (1.1.0.v20070510) "Core File System
> for Windows" [Resolved]
> org.eclipse.core.jobs (3.3.0.v20070423) "Eclipse Jobs Mechanism" [Active]
> org.eclipse.core.net (1.0.0.I20070531) "Internet Connection Management"
> [Active]
> org.eclipse.core.resources (3.3.0.v20070604) "Core Resource Management"
> [Active]
> org.eclipse.core.resources.compatibility (3.2.100.v20070502) "Core
> Resource Management Compatibility Fragment" [Resolved]
> org.eclipse.core.resources.win32 (3.3.0.v20070226) "Core Resource
> Management Win32 Fragment" [Resolved]
> org.eclipse.core.runtime (3.3.100.v20070530) "Core Runtime" [Active]
> org.eclipse.core.runtime.compatibility (3.1.200.v20070502) "Core Runtime
> Plug-in Compatibility" [Active]
> org.eclipse.core.runtime.compatibility.auth (3.2.100.v20070502)
> "Authorization Compatibility Plug-in" [Active]
> org.eclipse.core.runtime.compatibility.registry (3.2.100.v20070316)
> "Eclipse Registry Compatibility Fragment" [Resolved]
> org.eclipse.core.variables (3.2.0.v20070426) "Core Variables" [Starting]
> org.eclipse.cvs (1.0.0.v20070606) "Eclipse CVS Client" [Starting]
> org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
> Client SDK" [Resolved]
> org.eclipse.debug.core (3.3.0.v20070607-1800) "Debug Core" [Active]
> org.eclipse.debug.ui (3.3.0.v20070607-1800) "Debug UI" [Active]
> org.eclipse.draw2d (3.2.100.v20070529) "Graphical Editing Framework
> Draw2d" [Starting]
> org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
> [Starting]
> org.eclipse.emf.ant (2.3.0.v200706262000) "EMF Ant Tasks" [Starting]
> org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code
> Generator" [Starting]
> org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
> Generation" [Starting]
> org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
> Generation UI" [Starting]
> org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
> Generator UI" [Starting]
> org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common" [Starting]
> org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI" [Starting]
> org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert
> Support" [Starting]
> org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Programmers Guide" [Starting]
> org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore" [Starting]
> org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit Support"
> [Starting]
> org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
> [Starting]
> org.eclipse.emf.ecore.change (2.3.0.v200706262000) "EMF Ecore Change
> Model" [Starting]
> org.eclipse.emf.ecore.change.edit (2.3.0.v200706262000) "EMF Ecore Change
> Edit Support" [Starting]
> org.eclipse.emf.ecore.xmi (2.3.0.v200706262000) "EMF XMI" [Starting]
> org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit" [Starting]
> org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI" [Starting]
> org.eclipse.emf.exporter (2.3.0.v200706262000) "EMF Model Export Support"
> [Starting]
> org.eclipse.emf.cheatsheets (2.3.0.v200706262000) "EMF Cheat Sheets"
> [Starting]
> org.eclipse.emf.importer (2.3.0.v200706262000) "EMF Model Import Support"
> [Starting]
> org.eclipse.emf.importer.ecore (2.3.0.v200706262000) "EMF Ecore Importer"
> [Starting]
> org.eclipse.emf.importer.java (2.3.0.v200706262000) "EMF Annotated Java
> Importer" [Starting]
> org.eclipse.emf.importer.rose (2.3.0.v200706262000) "EMF Rose Importer"
> [Starting]
> org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping" [Starting]
> org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
> Framework (EMF) - org.eclipse.emf.mapping.ecore" [Starting]
> org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
> Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor"
> [Starting]
> org.eclipse.emf.mapping.ecore2ecore (2.3.0.v200706262000) "Ecore to Ecore
> Mapping" [Starting]
> org.eclipse.emf.mapping.ecore2ecore.editor (2.3.0.v200706262000) "Ecore to
> Ecore Mapping Editor" [Starting]
> org.eclipse.emf.mapping.ecore2xml (2.3.0.v200706262000) "Ecore to XML
> Mapping" [Starting]
> org.eclipse.emf.mapping.ecore2xml.ui (2.3.0.v200706262000) "Ecore to XML
> Mapping UI" [Starting]
> org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI"
> [Starting]
> org.eclipse.emf.ocl (1.1.0.v200706201508) "Object Constraint Language
> (OCL) 2.0 Compatibility API" [Starting]
> org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
> Technology Query Framework" [Starting]
> org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
> Framework Technology Query OCL" [Starting]
> org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Source" [Resolved]
> org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Transaction Core" [Starting]
> org.eclipse.emf.transaction.ui (1.0.1.v200703301538) "Eclipse Modeling
> Framework Technology Transaction UI" [Starting]
> org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Model Validation Core" [Starting]
> org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Validation Support for OCL" [Resolved]
> org.eclipse.emf.validation.ui (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Validation UI" [Starting]
> org.eclipse.emf.validation.ui.ide (1.0.1.v200703301524) "Eclipse Modeling
> Framework Technology Validation UI IDE" [Starting]
> org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Workbench Core" [Starting]
> org.eclipse.emf.workspace.ui (1.0.100.v200703301538) "Eclipse Modeling
> Framework Technology Workbench UI" [Starting]
> org.eclipse.equinox.app (1.0.0.v20070606) "Equinox Application Container"
> [Active]
> org.eclipse.equinox.common (3.3.0.v20070426) "Common Eclipse Runtime"
> [Active]
> org.eclipse.equinox.device (1.0.0.v20070226) "Device Access Service"
> [Resolved]
> org.eclipse.equinox.event (1.0.100.v20070516) "Event Admin" [Resolved]
> org.eclipse.equinox.http (1.0.100.v20070423) "HTTP Service" [Resolved]
> org.eclipse.equinox.http.jetty (1.0.0.v20070607) "Jetty Http Service"
> [Starting]
> org.eclipse.equinox.http.registry (1.0.0.v20070608) "Http Service Registry
> Extensions" [Resolved]
> org.eclipse.equinox.http.servlet (1.0.0.v20070606) "Http Services Servlet"
> [Starting]
> org.eclipse.equinox.http.servletbridge (1.0.0.v20070523) "Servletbridge
> Http Service" [Resolved]
> org.eclipse.equinox.jsp.jasper (1.0.0.v20070607) "Jasper Jsp Support
> Bundle" [Starting]
> org.eclipse.equinox.jsp.jasper.registry (1.0.0.v20070607) "Jasper Jsp
> Registry Support Plug-in" [Starting]
> org.eclipse.equinox.launcher (1.0.0.v20070606) "Equinox Launcher"
> [Resolved]
> org.eclipse.equinox.launcher.win32.win32.x86 (1.0.0.v20070523) "Equinox
> Launcher Win32 X86 Fragment" [Resolved]
> org.eclipse.equinox.log (1.0.100.v20070226) "Log Service" [Resolved]
> org.eclipse.equinox.metatype (1.0.0.v20070226) "Meta Type" [Resolved]
> org.eclipse.equinox.preferences (3.2.100.v20070522) "Eclipse Preferences
> Mechanism" [Active]
> org.eclipse.equinox.registry (3.3.0.v20070522) "Extension Registry
> Support" [Active]
> org.eclipse.equinox.servletbridge (1.0.0.v20070523) "bundleName"
> [Resolved]
> org.eclipse.equinox.useradmin (1.0.0.v20070226) "User Admin Service"
> [Resolved]
> org.eclipse.gef (3.2.100.v20070620) "Graphical Editing Framework"
> [Starting]
> org.eclipse.gmf (1.0.0.v20070601-1400) "Graphical Modeling Framework"
> [Starting]
> org.eclipse.gmf.bridge (1.1.0.v20070621-0000) "GMF Models Bridging
> Plug-in" [Starting]
> org.eclipse.gmf.bridge.ui (1.1.0.v20070621-0000) "GMF Tooling UI"
> [Starting]
> org.eclipse.gmf.bridge.ui.dashboard (2.0.0.v20070621-0000) "GMF Dashboard"
> [Starting]
> org.eclipse.gmf.codegen (2.0.0.v20070621-0000) "GMF GenModel and Code
> Generation" [Starting]
> org.eclipse.gmf.codegen.edit (2.0.0.v20070614-1400) "GMF GenModel Edit
> Support" [Starting]
> org.eclipse.gmf.codegen.ui (1.1.0.v20070621-0000) "GMF Code Generation UI"
> [Starting]
> org.eclipse.gmf.common (1.1.0.v20070621-0000) "GMF Tooling Commons
> Plug-in" [Starting]
> org.eclipse.gmf.doc.ui (1.1.0.v20070601-1400) "GMF Documentation
> Cheatsheets" [Starting]
> org.eclipse.gmf.ecore.editor (2.0.0.v20070621-0000) "ECore Sample Diagram
> Plugin" [Starting]
> org.eclipse.gmf.graphdef (2.0.0.v20070621-0000) "GMF Graphical Definition"
> [Resolved]
> org.eclipse.gmf.graphdef.codegen (2.0.0.v20070621-0000) "Graphical
> Definition Code Generator" [Starting]
> org.eclipse.gmf.graphdef.codegen.ui (1.0.100.v20070621-0000) "Graphical
> Definition Code Generator UI Support" [Resolved]
> org.eclipse.gmf.graphdef.edit (2.0.0.v20070601-1400) "GMFGraph Edit
> Support" [Starting]
> org.eclipse.gmf.map (2.0.0.v20070621-0000) "GMF Mapping Model" [Starting]
> org.eclipse.gmf.map.edit (2.0.0.v20070621-0000) "GMF Mapping Edit Support"
> [Starting]
> org.eclipse.gmf.runtime.common.core (1.0.100.v20070601-1400) "GMF Common
> Core" [Starting]
> org.eclipse.gmf.runtime.common.ui (1.0.100.v20070601-1400) "GMF Common UI"
> [Starting]
> org.eclipse.gmf.runtime.common.ui.action (1.0.100.v20070601-1400) "GMF
> Common UI Action" [Starting]
> org.eclipse.gmf.runtime.common.ui.action.ide (1.0.1.v20070601-1400) "GMF
> Common UI Action IDE" [Starting]
> org.eclipse.gmf.runtime.common.ui.printing (1.0.1.v20070601-1400) "GMF
> Printing" [Starting]
> org.eclipse.gmf.runtime.common.ui.printing.win32 (1.0.2.v20070601-1400)
> "GMF Printing for Win32" [Resolved]
> org.eclipse.gmf.runtime.common.ui.services (1.0.100.v20070601-1400) "GMF
> Common UI Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.action (1.0.100.v20070601-1400)
> "GMF Common UI Action Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.dnd (1.0.1.v20070601-1400) "GMF
> Common UI DND Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.dnd.ide (1.0.1.v20070601-1400)
> "GMF Common UI DND IDE Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.properties
> (1.0.1.v20070601-1400) "GMF Common UI Properties Service Framework"
> [Starting]
> org.eclipse.gmf.runtime.diagram.core (1.0.100.v20070601-1400) "GMF Diagram
> Core" [Starting]
> org.eclipse.gmf.runtime.diagram.ui (1.0.100.v20070621-0000) "GMF Diagram
> UI" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.actions (1.0.100.v20070621-0000) "GMF
> Diagram Actions" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.dnd (1.0.1.v20070601-1400) "GMF Diagram
> Browse" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.geoshapes (1.0.1.v20070601-1400) "GMF
> Geometric Shapes" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.printing (1.0.100.v20070621-0000) "GMF
> Diagram Printing" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.printing.render (1.0.1.v20070601-1400)
> "GMF Diagram UI Printing Render Plug-In" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.properties (1.0.100.v20070608-1300)
> "GMF Diagram UI Properties" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.providers (1.0.100.v20070621-0000) "GMF
> Diagram Providers" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.providers.ide (1.0.1.v20070601-1400)
> "GMF Diagram Providers IDE" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.render (1.0.100.v20070621-0000) "GMF
> Diagram UI Render Plug-In" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.resources.editor (1.0.3.v20070601-1400)
> "GMF Diagram UI Resources Editor Plug-In" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide
> (1.0.3.v20070601-1400) "GMF IDE Editor" [Starting]
> org.eclipse.gmf.runtime.draw2d.ui (1.0.100.v20070621-0000) "GMF Draw2d
> Additions" [Starting]
> org.eclipse.gmf.runtime.draw2d.ui.render (1.0.100.v20070614-1400) "GMF
> Draw2d Image Rendering Additions" [Starting]
> org.eclipse.gmf.runtime.draw2d.ui.render.awt (1.0.100.v20070614-1400) "GMF
> Draw2d Image AWT based Rendering Additions" [Starting]
> org.eclipse.gmf.runtime.emf.clipboard.core (1.0.100.v20070621-0000) "GMF
> EMF Clipboard Support" [Starting]
> org.eclipse.gmf.runtime.emf.commands.core (1.0.3.v20070601-1400) "GMF
> Commands" [Starting]
> org.eclipse.gmf.runtime.emf.core (1.0.100.v20070601-1400) "GMF Modeling
> Service Layer" [Starting]
> org.eclipse.gmf.runtime.emf.type.core (1.0.100.v20070601-1400) "GMF EMF
> Type Core" [Starting]
> org.eclipse.gmf.runtime.emf.type.ui (1.0.1.v20070601-1400) "GMF EMF Type
> UI" [Starting]
> org.eclipse.gmf.runtime.emf.ui (1.0.100.v20070621-0000) "GMF MSL UI"
> [Starting]
> org.eclipse.gmf.runtime.emf.ui.properties (1.0.2.v20070601-1400) "GMF EMF
> UI Properties Providers" [Starting]
> org.eclipse.gmf.runtime.gef.ui (1.0.1.v20070601-1400) "GMF GEF Additions"
> [Starting]
> org.eclipse.gmf.runtime.notation (1.0.100.v20070621-0000) "GMF Notation
> Model Support" [Starting]
> org.eclipse.gmf.runtime.notation.edit (1.0.1.v20070621-0000) "GMF Notation
> Edit Support" [Starting]
> org.eclipse.gmf.runtime.notation.providers (1.0.1.v20070601-1400) "GMF
> Notation Metamodel" [Starting]
> org.eclipse.gmf.sdk (1.0.0.v20070601-1400) "Graphical Modeling Framework
> SDK" [Starting]
> org.eclipse.gmf.tooldef (2.0.0.v20070621-0000) "GMF Tooling Model"
> [Starting]
> org.eclipse.gmf.tooldef.edit (2.0.0.v20070601-1400) "GMF Tooling Edit
> Support" [Starting]
> org.eclipse.gmf.validate (1.1.0.v20070621-0000) "GMF Validation"
> [Starting]
> org.eclipse.gmf.xpand (1.0.0.v20070608-1300) "GMF Xpand Template Engine"
> [Starting]
> org.eclipse.help (3.3.0.v20070524) "Help System Core" [Active]
> org.eclipse.help.appserver (3.1.200.v20070510) "Help Application Server"
> [Starting]
> org.eclipse.help.base (3.3.0.v20070606) "Help System Base" [Starting]
> org.eclipse.help.ui (3.3.0.v20070530) "Help System UI" [Starting]
> org.eclipse.help.webapp (3.3.0.v20070607) "Help System Webapp" [Starting]
> org.eclipse.jdt (3.3.0.v20070607-1300) "Eclipse Java Development Tools"
> [Resolved]
> org.eclipse.jdt.apt.core (3.3.0.v20070607-1200) "Java Annotation
> Processing Core" [Active]
> org.eclipse.jdt.apt.pluggable.core (1.0.0.v20070529-2100) "Java Compiler
> Apt IDE" [Starting]
> org.eclipse.jdt.apt.ui (3.3.0.v20070430-1135) "Java Annotation Processing
> UI" [Starting]
> org.eclipse.jdt.compiler.apt (1.0.0.v20070510-2000) "Java Compiler Apt"
> [Resolved]
> org.eclipse.jdt.compiler.tool (1.0.0.v_771) "Java Compiler Tool Support"
> [Resolved]
> org.eclipse.jdt.core (3.3.0.v_771) "Java Development Tools Core" [Active]
> org.eclipse.jdt.core.manipulation (1.1.0.v20070606-0010) "Java Code
> Manipulation Functionality" [Active]
> org.eclipse.jdt.debug (3.3.0.v20070530a) "JDI Debug Model" [Active]
> org.eclipse.jdt.debug.ui (3.2.100.v20070531-1800) "JDI Debug UI" [Active]
> org.eclipse.jdt.doc.isv (3.3.0.v20070613) "Eclipse JDT Plug-in Developer
> Guide" [Starting]
> org.eclipse.jdt.doc.user (3.3.0.v20070608-1300) "Eclipse Java Development
> User Guide" [Starting]
> org.eclipse.jdt.junit (3.3.0.v20070606-0010) "Java Development Tools JUnit
> support" [Starting]
> org.eclipse.jdt.junit.runtime (3.3.0.v20070606-0010) "Java Development
> Tools JUnit runtime support" [Resolved]
> org.eclipse.jdt.junit4.runtime (1.0.100.v20070606-0010) "Java Development
> Tools JUnit4 runtime support" [Resolved]
> org.eclipse.jdt.launching (3.3.0.v20070510) "Java Development Tools
> Launching Support" [Active]
> org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
> "Eclipse Java Development Tools SDK" [Resolved]
> org.eclipse.jdt.ui (3.3.0.v20070607-0010) "Java Development Tools UI"
> [Active]
> org.eclipse.jem.util (2.0.0.v200705302225) "Java EMF Model Utilities"
> [Starting]
> org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET" [Starting]
> org.eclipse.jet.core (1.0.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Core" [Starting]
> org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Documentation" [Starting]
> org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Examples" [Starting]
> org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET SDK" [Resolved]
> org.eclipse.jet.ui (0.8.0.v200704041505) "JET Transformations UI Plug-in"
> [Active]
> org.eclipse.jface (3.3.0.I20070606-0010) "JFace" [Active]
> org.eclipse.jface.databinding (1.1.0.I20070606-0010) "JFace Data Binding
> for SWT and JFace" [Resolved]
> org.eclipse.jface.text (3.3.0.v20070606-0010) "JFace Text" [Resolved]
> org.eclipse.jsch.core (1.0.0.I20070426) "JSch Core" [Active]
> org.eclipse.jsch.ui (1.0.0.I20070525) "JSch UI" [Starting]
> org.eclipse.ltk.core.refactoring (3.3.0.v20070606-0010) "Refactoring Core"
> [Active]
> org.eclipse.ltk.ui.refactoring (3.3.0.v20070606-0010) "Refactoring UI"
> [Active]
> org.eclipse.mylyn (2.0.0.v20070910-1300) "Mylyn" [Starting]
> org.eclipse.mylyn.bugzilla.core (2.0.0.v20070910-1300) "Mylyn Bugzilla
> Connector Core" [Active]
> org.eclipse.mylyn.bugzilla.ide (2.0.0.v20070910-1300) "Mylyn Bugzilla
> Connector IDE" [Active]
> org.eclipse.mylyn.bugzilla.ui (2.0.0.v20070910-1300) "Mylyn Bugzilla
> Connector UI" [Active]
> org.eclipse.mylyn.compatibility (2.0.0.v20070910-1300) "Java 5
> Compatibility Checker" [Active]
> org.eclipse.mylyn.context.core (2.0.0.v20070910-1300) "Mylyn Context Core"
> [Active]
> org.eclipse.mylyn.context.ui (2.0.0.v20070910-1300) "Mylyn Context UI"
> [Active]
> org.eclipse.mylyn.help.ui (2.0.0.v20070910-1300) "Mylyn Help" [Starting]
> org.eclipse.mylyn.ide.ant (2.0.0.v20070910-1300) "Mylyn Ant UI Plug-in"
> [Active]
> org.eclipse.mylyn.ide.ui (2.0.0.v20070910-1300) "Mylyn IDE UI" [Active]
> org.eclipse.mylyn.java.ui (2.0.0.v20070910-1300) "Mylyn Java" [Active]
> org.eclipse.mylyn.monitor.core (2.0.0.v20070910-1300) "Mylyn Monitor Core"
> [Resolved]
> org.eclipse.mylyn.monitor.ui (2.0.0.v20070910-1300) "Mylyn Monitor UI"
> [Active]
> org.eclipse.mylyn.pde.ui (2.0.0.v20070910-1300) "Mylyn PDE UI Plug-in"
> [Active]
> org.eclipse.mylyn.resources.ui (2.0.0.v20070910-1300) "Mylyn Resources UI"
> [Active]
> org.eclipse.mylyn.sandbox.ui (2.0.0.v20070910-1300) "Mylyn Sandbox
> Experimental UI" [Active]
> org.eclipse.mylyn.tasks.core (2.0.0.v20070910-1300) "Mylyn Tasks Core"
> [Active]
> org.eclipse.mylyn.tasks.ui (2.0.0.v20070910-1300) "Mylyn Tasks UI"
> [Active]
> org.eclipse.mylyn.team.cvs (2.0.0.v20070910-1300) "Mylyn Team CVS Plug-in"
> [Resolved]
> org.eclipse.mylyn.team.ui (2.0.0.v20070910-1300) "Mylyn Team UI" [Active]
> org.eclipse.mylyn.trac.core (2.0.0.v20070910-1300) "Mylyn Trac Connector
> Core" [Active]
> org.eclipse.mylyn.trac.ui (2.0.0.v20070910-1300) "Mylyn Trac Connector UI"
> [Active]
> org.eclipse.mylyn.web.core (2.0.0.v20070910-1300) "Mylyn Web Core Plug-in"
> [Active]
> org.eclipse.mylyn.web.ui (2.0.0.v20070910-1300) "Mylyn Web UI" [Starting]
> org.eclipse.ocl (1.1.0.v200706201508) "Object Constraint Language (OCL)
> 2.0 Parser/Interpreter" [Starting]
> org.eclipse.ocl.ecore (1.1.0.v200706071450) "OCL 2.0 Binding for Ecore"
> [Starting]
> org.eclipse.ocl.uml (1.1.0.v200706071450) "OCL 2.0 Binding for UML"
> [Starting]
> org.eclipse.osgi (3.3.0.v20070530) "OSGi System Bundle" [Active]
> org.eclipse.osgi.services (3.1.200.v20070605) "OSGi Release 4.0.1
> Services" [Resolved]
> org.eclipse.osgi.util (3.1.200.v20070605) "OSGi Release 4.0.1 Utility
> Classes" [Resolved]
> org.eclipse.pde (3.3.0.v20070608-1300) "Eclipse Plug-in Development
> Environment" [Active]
> org.eclipse.pde.build (3.3.0.v20070612) "Plug-in Development Environment
> Build Support" [Starting]
> org.eclipse.pde.core (3.3.0.v20070608-1300) "Plug-in Development Core"
> [Active]
> org.eclipse.pde.doc.user (3.3.0.v20070614-0800) "Eclipse Plug-in
> Development User Guide" [Resolved]
> org.eclipse.pde.junit.runtime (3.3.0.v20070608-1300) "PDE JUnit Plug-in
> Test" [Resolved]
> org.eclipse.pde.runtime (3.3.0.v20070608-1300) "Plug-in Development
> Environment Runtime" [Starting]
> org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
> Plug-in Development Environment Developer Resources" [Resolved]
> org.eclipse.pde.ui (3.3.0.v20070608-1300) "Plug-in Development UI"
> [Active]
> org.eclipse.pde.ui.templates (3.3.0.v20070608-1300) "PDE Templates"
> [Starting]
> org.eclipse.platform (3.3.0.v20070613) "Eclipse Platform" [Starting]
> org.eclipse.platform.doc.isv (3.3.0.v20070621) "Eclipse Platform Plug-in
> Developer Guide" [Starting]
> org.eclipse.platform.doc.user (3.3.0.I20070615-1300) "Eclipse Workbench
> User Guide" [Starting]
> org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
> "Eclipse Platform Plug-in Developer Resources" [Resolved]
> org.eclipse.platform.source.win32.win32.x86
> (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse Platform Plug-in Developer
> Resources" [Resolved]
> org.eclipse.rcp (3.2.0.v20070612) "Eclipse RCP" [Starting]
> org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse
> RCP Plug-in Developer Resources" [Resolved]
> org.eclipse.rcp.source.win32.win32.x86
> (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP Plug-in Developer
> Resources" [Resolved]
> org.eclipse.sdk (3.3.0.v20070613) "Eclipse Project SDK" [Starting]
> org.eclipse.search (3.3.0.v20070606-0010) "Search Support" [Active]
> org.eclipse.swt (3.3.0.v3346) "Standard Widget Toolkit" [Resolved]
> org.eclipse.swt.win32.win32.x86 (3.3.0.v3346) "Standard Widget Toolkit for
> Windows" [Resolved]
> org.eclipse.team.core (3.3.0.I20070607) "Team Support Core" [Active]
> org.eclipse.team.cvs.core (3.3.0.I20070607) "CVS Team Provider Core"
> [Active]
> org.eclipse.team.cvs.ssh (3.2.100.I20061208) "CVS SSH Core" [Starting]
> org.eclipse.team.cvs.ssh2 (3.2.100.I20070604) "CVS SSH2" [Starting]
> org.eclipse.team.cvs.ui (3.3.0.I20070607) "CVS Team Provider UI" [Active]
> org.eclipse.team.ui (3.3.0.I20070607) "Team Support UI" [Active]
> org.eclipse.text (3.3.0.v20070606-0010) "Text" [Resolved]
> org.eclipse.tomcat (4.1.230.v20070531) "Tomcat Wrapper" [Starting]
> org.eclipse.ui (3.3.0.I20070614-0800) "Eclipse UI" [Active]
> org.eclipse.ui.browser (3.2.100.v20070524A) "Browser Support" [Starting]
> org.eclipse.ui.console (3.2.0.v20070530) "Console" [Active]
> org.eclipse.ui.editors (3.3.0.v20070606-0010) "Default Text Editor"
> [Active]
> org.eclipse.ui.externaltools (3.1.200.v20070416) "External Tools" [Active]
> org.eclipse.ui.forms (3.3.0.v20070511) "Eclipse Forms" [Active]
> org.eclipse.ui.cheatsheets (3.3.0.v20070507) "Cheat Sheets" [Starting]
> org.eclipse.ui.ide (3.3.0.I20070620) "Eclipse IDE UI" [Active]
> org.eclipse.ui.ide.application (1.0.0.I20070530-0100) "Eclipse IDE UI
> Application" [Resolved]
> org.eclipse.ui.intro (3.2.100.v20070530) "Welcome Framework" [Starting]
> org.eclipse.ui.intro.universal (3.2.100.v20070530A) "Universal Welcome"
> [Starting]
> org.eclipse.ui.navigator (3.3.0.I20070605-0010) "Common Navigator View"
> [Starting]
> org.eclipse.ui.navigator.resources (3.3.0.I20070605-0010) "Navigator
> Workbench Components" [Starting]
> org.eclipse.ui.net (1.0.0.I20070516) "Internet Connection Management UI"
> [Active]
> org.eclipse.ui.presentations.r21 (3.2.100.I20070605-0010) "R21
> Presentation Plug-in" [Starting]
> org.eclipse.ui.views (3.2.100.I20070319-0010) "Views" [Active]
> org.eclipse.ui.views.properties.tabbed (3.3.0.I20070605-0010) "Tabbed
> Properties View" [Starting]
> org.eclipse.ui.win32 (3.2.100.I20070319-0010) "Eclipse UI Win32
> Enhancements" [Resolved]
> org.eclipse.ui.workbench (3.3.0.I20070608-1100) "Workbench" [Active]
> org.eclipse.ui.workbench.compatibility (3.2.0.I20070319-0010) "Workbench
> Compatibility" [Resolved]
> org.eclipse.ui.workbench.texteditor (3.3.0.v20070606-0010) "Text Editor
> Framework" [Active]
> org.eclipse.uml2 (2.1.0.v200706251652) "UML2" [Resolved]
> org.eclipse.uml2.codegen.ecore (1.3.0.v200706251652) "UML2 Ecore Code
> Generation" [Starting]
> org.eclipse.uml2.codegen.ecore.ui (1.3.0.v200706251652) "UML2 Ecore Code
> Generation UI" [Starting]
> org.eclipse.uml2.common (1.3.0.v200706251652) "UML2 Common" [Starting]
> org.eclipse.uml2.common.edit (1.3.0.v200706251652) "UML2 Common Edit
> Support" [Starting]
> org.eclipse.uml2.uml (2.1.0.v200706251652) "UML2 UML Model" [Starting]
> org.eclipse.uml2.uml.ecore.exporter (2.1.0.v200706251652) "UML2 UML
> Exporter for EMF" [Starting]
> org.eclipse.uml2.uml.ecore.importer (2.1.0.v200706251652) "UML2 UML
> Importer for EMF" [Starting]
> org.eclipse.uml2.uml.edit (2.1.0.v200706251652) "UML2 UML Edit Support"
> [Starting]
> org.eclipse.uml2.uml.editor (2.1.0.v200706251652) "UML2 UML Editor"
> [Starting]
> org.eclipse.uml2.uml.resources (2.1.0.v200706251652) "UML2 UML Resources"
> [Resolved]
> org.eclipse.update.configurator (3.2.100.v20070615) "Install/Update
> Configurator" [Active]
> org.eclipse.update.core (3.2.100.v20070615) "Install/Update Core" [Active]
> org.eclipse.update.core.win32 (3.2.100.v20070615) "Install/Update Core for
> Windows" [Resolved]
> org.eclipse.update.scheduler (3.2.100.v20070615) "Automatic Updates
> Scheduler" [Active]
> org.eclipse.update.ui (3.2.100.v20070615) "Install/Update UI" [Starting]
> org.eclipse.wst (1.0.2.v200706120315) "Web Standard Tools (WST)"
> [Resolved]
> org.eclipse.wst.command.env (1.0.203.v200705302225) "Environment Command
> Framework (headless)" [Starting]
> org.eclipse.wst.command.env.core (1.0.202.v200705302225) "Environment
> Command Framework (core)" [Resolved]
> org.eclipse.wst.command.env.doc.user (1.5.1.v200706120315) "Web services
> Axis Ant task documentation" [Starting]
> org.eclipse.wst.command.env.infopop (1.0.3.v200706110217) "Web services
> UI" [Starting]
> org.eclipse.wst.command.env.ui (1.0.202.v200705302225) "Environment
> Command Framework (GUI)" [Starting]
> org.eclipse.wst.common_core.feature.source
> (2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools - Common
> Core Source" [Resolved]
> org.eclipse.wst.common_ui.feature.source
> (2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
> Common UI Source" [Resolved]
> org.eclipse.wst.common.core (1.1.101.v200706120315) "WST Common Core
> Plug-in" [Starting]
> org.eclipse.wst.common.emf (1.1.103.v200706071630) "EMF Utilities"
> [Starting]
> org.eclipse.wst.common.emfworkbench.integration (1.1.103.v200706071630)
> "EMF Workbench Edit Plug-in" [Starting]
> org.eclipse.wst.common.environment (1.0.200.v200705302225) "Enviornment
> Plug-in" [Starting]
> org.eclipse.wst.common.frameworks (1.1.102.v200706071630) "Common
> Frameworks" [Starting]
> org.eclipse.wst.common.frameworks.ui (1.1.100.v200706071630) "WTP UI
> Plug-in" [Starting]
> org.eclipse.wst.common.infopop (1.0.2.v200706110217) "Common WST infopops"
> [Starting]
> org.eclipse.wst.common.modulecore (1.1.102.v200706071630) "Modulecore
> Plug-in" [Starting]
> org.eclipse.wst.common.project.facet.core (1.2.0.v200706071740) "Project
> Facet Core" [Starting]
> org.eclipse.wst.common.project.facet.ui (1.2.0.v200706071742) "Project
> Facet UI" [Starting]
> org.eclipse.wst.common.snippets (1.1.101.v200705302225) "Snippets View"
> [Starting]
> org.eclipse.wst.common.ui (1.1.200.v200705302225) "Eclipse Base UI
> extensions" [Starting]
> org.eclipse.wst.common.ui.properties (1.0.102.v200706120315) "Common
> Properties UI" [Starting]
> org.eclipse.wst.common.uriresolver (1.1.201.v200705302225) "Common URI
> Resolver Framework" [Starting]
> org.eclipse.wst.css.core (1.1.101.v200705302225) "Structured Source CSS
> Model" [Starting]
> org.eclipse.wst.css.ui (1.0.201.v200705302225) "SSE CSS Source Editor"
> [Starting]
> org.eclipse.wst.doc.isv (1.0.304.v200706112015) "WST ISV Documentation"
> [Starting]
> org.eclipse.wst.doc.user (1.1.0.v200705302225) "Master User Doc TOC"
> [Starting]
> org.eclipse.wst.dtd.core (1.1.101.v200705302225) "Structured Source DTD
> Core" [Starting]
> org.eclipse.wst.dtd.ui (1.0.201.v200705302225) "SSE DTD Source Editor"
> [Starting]
> org.eclipse.wst.dtd.ui.infopop (1.0.2.v200706110217) "DTD Editor infopops"
> [Resolved]
> org.eclipse.wst.dtdeditor.doc.user (1.0.300.v200705302225) "DTD Editor
> documentation" [Resolved]
> org.eclipse.wst.html.core (1.1.101.v200706120811) "Structured Source HTML
> Model" [Starting]
> org.eclipse.wst.html.ui (1.0.201.v200705302225) "HTML UI Source Editor"
> [Starting]
> org.eclipse.wst.html.ui.infopop (1.0.2.v200706110217) "HTML editor
> infopops" [Resolved]
> org.eclipse.wst.internet.cache (1.0.201.v200705302225) "Cache URI Resolver
> Plug-in" [Starting]
> org.eclipse.wst.internet.monitor.core (1.0.203.v20070608) "Monitor"
> [Starting]
> org.eclipse.wst.internet.monitor.ui (1.0.203.v20070608) "TCP/IP Monitor"
> [Starting]
> org.eclipse.wst.javascript.core (1.0.101.v200706071955) "Structured Source
> JavaScript Model" [Starting]
> org.eclipse.wst.javascript.ui (1.0.101.v200705302225) "SSE JavaScript
> Source Editor" [Starting]
> org.eclipse.wst.javascript.ui.infopop (1.0.2.v200706110217) "Javascript
> infopop" [Resolved]
> org.eclipse.wst.server_core.feature.source
> (2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server Core
> Source" [Resolved]
> org.eclipse.wst.server_ui.feature.source
> (2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
> Server UI Source" [Resolved]
> org.eclipse.wst.serve
Re: Eclipse timeline plugin [message #28396 is a reply to message #28182] Thu, 13 September 2007 16:40 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: rob.elves.eclipse.org

Here are the primary entry points you will likely need:

TaskList taskList = TasksUiPlugin.getTaskListManager().getTaskList();

// Retrieve all categories
Set<AbstractTaskCategory> categories = taskList.getCategories();

// Retrieve all queries
Set<AbstractRepositoryQuery> queries = taskList.getQueries();

Call getChildren() on either of these returned types to get all
AbstractTask objects contained within.

I've added these notes to:

http://wiki.eclipse.org/Mylyn_Integrator_Reference#Accessing _the_Task_List

Feel free to expand on this as you proceed.

-Rob


Jay Chen wrote:
> Yes, there is bug showing all task groups, currently just show task
> categories, and i am trying to fix it.
>
> Since i am not familiar with Mylyn API, do you have any advisement on
> retreiveing all task groups and retreiveing special groups tasks?
>
> I am cleaning up the code, i will upload the code soon.
>
> "David Rothenberger" <daveroth@acm.org> wrote in message
> news:fc771c$kde$1@build.eclipse.org...
>> On 9/3/2007 11:26 PM, Jay Chen wrote:
>>> I recently start a eclipse plugin project which use Timeline view (from
>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>> timeline view.
>> I tried out this plugin yesterday and really like it. One question: Can it
>> display information about Mylyn tasks from repositories other than the
>> local one? I have a Trac repository and the timeline doesn't seem to
>> include tasks from that repository.
>>
>> --
>> David Rothenberger ---- daveroth@acm.org
>>
>> wolf, n.:
>> A man who knows all the ankles.
>
>
Re: Eclipse timeline plugin [message #28867 is a reply to message #28396] Fri, 14 September 2007 05:48 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Thanks Robert, i should read the wiki item carefully,;).

And one another quesion which can not find answer on wiki is, how can i get
the repository task created date, the AbstractTask getCreationDate() retrun
the local task created date not the creation date of the remote task.

To David Rothenberger, the bug had fixed, please update the Timeline
features.

"Robert Elves" <rob.elves@eclipse.org> wrote in message
news:fcbp6a$7j0$1@build.eclipse.org...
> Here are the primary entry points you will likely need:
>
> TaskList taskList = TasksUiPlugin.getTaskListManager().getTaskList();
>
> // Retrieve all categories
> Set<AbstractTaskCategory> categories = taskList.getCategories();
>
> // Retrieve all queries
> Set<AbstractRepositoryQuery> queries = taskList.getQueries();
>
> Call getChildren() on either of these returned types to get all
> AbstractTask objects contained within.
>
> I've added these notes to:
>
> http://wiki.eclipse.org/Mylyn_Integrator_Reference#Accessing _the_Task_List
>
> Feel free to expand on this as you proceed.
>
> -Rob
>
>
> Jay Chen wrote:
>> Yes, there is bug showing all task groups, currently just show task
>> categories, and i am trying to fix it.
>>
>> Since i am not familiar with Mylyn API, do you have any advisement on
>> retreiveing all task groups and retreiveing special groups tasks?
>>
>> I am cleaning up the code, i will upload the code soon.
>>
>> "David Rothenberger" <daveroth@acm.org> wrote in message
>> news:fc771c$kde$1@build.eclipse.org...
>>> On 9/3/2007 11:26 PM, Jay Chen wrote:
>>>> I recently start a eclipse plugin project which use Timeline view (from
>>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>>> timeline view.
>>> I tried out this plugin yesterday and really like it. One question: Can
>>> it display information about Mylyn tasks from repositories other than
>>> the local one? I have a Trac repository and the timeline doesn't seem to
>>> include tasks from that repository.
>>>
>>> --
>>> David Rothenberger ---- daveroth@acm.org
>>>
>>> wolf, n.:
>>> A man who knows all the ankles.
>>
>>
>
Re: Eclipse timeline plugin [message #28876 is a reply to message #28867] Fri, 14 September 2007 18:16 Go to previous messageGo to next message
David Rothenberger is currently offline David RothenbergerFriend
Messages: 5
Registered: July 2009
Junior Member
On 9/13/2007 10:48 PM, Jay Chen wrote:
> To David Rothenberger, the bug had fixed, please update the Timeline
> features.

Thanks! That did fix the problem.

I did encounter one other small bug, though. If I click on Scroll To
Date ... and then Today, I lose all events. If I click on OK in the same
box, they all come back.

--
David Rothenberger ---- daveroth@acm.org

QOTD:
"She's about as smart as bait."
Re: Eclipse timeline plugin [message #28912 is a reply to message #28867] Fri, 14 September 2007 18:53 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: beatmik.acm.org

Great to see all this interest in the timeline :)

Jay: please post API questions to the mylyn-integrators list, and feel
free to open bugs tagged [api] to make access to the information you
need easier.

http://eclipse.org/mylyn/community/

Mik

Jay Chen wrote:
> Thanks Robert, i should read the wiki item carefully,;).
>
> And one another quesion which can not find answer on wiki is, how can i get
> the repository task created date, the AbstractTask getCreationDate() retrun
> the local task created date not the creation date of the remote task.
>
> To David Rothenberger, the bug had fixed, please update the Timeline
> features.
Re: Eclipse timeline plugin [message #30082 is a reply to message #25224] Fri, 21 September 2007 08:19 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: mk.nospam.org

Jay,

This is really a great idea, I have tried your plug-in and after setting
the http port via the command line it worked for me. However, it is a
little annoying to define a new port for each instance of eclipse, since
I'm often running two or three at once. I don't know if it's possible
with the current implementation of the timeline component, but a
solution could be to run it offline and configure it only via the
browser widget API (assuming you are using that) without having a web
server.

I would enjoy hearing your thoughts about this.
Thanks for your great work so far!

Martin Klinke

Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
>
> Thanks.
>
>
Re: Eclipse timeline plugin [message #30227 is a reply to message #30082] Mon, 24 September 2007 06:43 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Hi Martin,

For this plugin depends on the great effort from
http://simile.mit.edu/timeline which is a javascript component that best
used in client-server mode. So I choose use a web server in the plugin. To
keep the plugin simple, I use the simple OSGi http service and it was a lazy
approching. Maybe I should change to use the org.eclipse.equinox.http.jetty
which can do more server configuration as the Eclipse Help does. But it is a
heavier implementation than OSGi http service.

About the your suggestion of offline mode, I think it will increase the
complication of manage the javascript source and the datasource locally,
and reduce the performance (must write datasource to somewhere). But I will
try it.

Anyway, thanks for your feedback.

"Martin Klinke" <mk@nospam.org> wrote in message
news:fcvur0$2m2$1@build.eclipse.org...
> Jay,
>
> This is really a great idea, I have tried your plug-in and after setting
> the http port via the command line it worked for me. However, it is a
> little annoying to define a new port for each instance of eclipse, since
> I'm often running two or three at once. I don't know if it's possible with
> the current implementation of the timeline component, but a solution could
> be to run it offline and configure it only via the browser widget API
> (assuming you are using that) without having a web server.
>
> I would enjoy hearing your thoughts about this.
> Thanks for your great work so far!
>
> Martin Klinke
>
> Jay Chen wrote:
>> Good morning/afternoon/evening,
>>
>> Please forgive me if I post the wrong place, but i definitely think it
>> will help to mylyn users.
>>
>> I recently start a eclipse plugin project which use Timeline view (from
>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>> timeline view.
>>
>> The project is http://code.google.com/p/eclipsetimeline/, though it is in
>> beta state, I hope someone can take a try and provide precious feedback
>> for me.
>>
>> Thanks.
Re: Eclipse timeline plugin [message #30862 is a reply to message #25224] Thu, 27 September 2007 08:51 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse.20.dbaer.spamgourmet.com

Hello
I can't install it. The timeline-features in the Updates-dialog creates this
error message:
"Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."

Any hints?

Thank you!
d.
Re: Eclipse timeline plugin [message #30896 is a reply to message #30862] Thu, 27 September 2007 09:14 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: mk.nospam.org

You have to install the Eclipse Project Equinox bundle feature from the
Eclipse Updates site.

Baer wrote:
> Hello
> I can't install it. The timeline-features in the Updates-dialog creates
> this error message:
> "Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."
>
> Any hints?
>
> Thank you!
> d.
Re: Eclipse timeline plugin [message #30931 is a reply to message #30896] Thu, 27 September 2007 11:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse.20.dbaer.spamgourmet.com

Thank you for the hint, but I still get the same error message.
I have Eclipse 3.2.2 and installed the equinox-bundle (no entry in the "Featrue
Details", but 10 different org.eclipse.equinox.*-plugins). Equinox version
3.2.2.r322_v20070104-A15rI75VboyEcIl.

Martin Klinke schrieb:
> You have to install the Eclipse Project Equinox bundle feature from the
> Eclipse Updates site.
>
> Baer wrote:
>> Hello
>> I can't install it. The timeline-features in the Updates-dialog
>> creates this error message:
>> "Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."
>>
>> Any hints?
>>
>> Thank you!
>> d.
Re: Eclipse timeline plugin [message #31000 is a reply to message #30931] Thu, 27 September 2007 16:41 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: martin.nospam.com

Do you have the org.eclipse.equinox.http plug-in? Maybe you need to
start with -clean? I have it running under 3.3.
Another thing you could try is to go to Find and Install -> Search for
new features to install and select ALL update sites you have (including
the one for timeline), select timeline and then select required.

HTH,
Martin

Baer schrieb:
> Thank you for the hint, but I still get the same error message.
> I have Eclipse 3.2.2 and installed the equinox-bundle (no entry in the
> "Featrue Details", but 10 different org.eclipse.equinox.*-plugins).
> Equinox version 3.2.2.r322_v20070104-A15rI75VboyEcIl.
>
> Martin Klinke schrieb:
>> You have to install the Eclipse Project Equinox bundle feature from
>> the Eclipse Updates site.
>>
>> Baer wrote:
>>> Hello
>>> I can't install it. The timeline-features in the Updates-dialog
>>> creates this error message:
>>> "Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."
>>>
>>> Any hints?
>>>
>>> Thank you!
>>> d.
Re: Eclipse timeline plugin [message #31069 is a reply to message #30227] Thu, 27 September 2007 18:05 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: devaughn.cisco.com

For the jetty plugin if you specify 0 for the port then it uses the
first available port. You can then retrieve the http service and get
the port property to see what port it used. I thought this was true for
the osgi http service as well. At least this way a port would not need
to be specified. I have not used the timeline plugin so I am not sure
if this solution would work for you.

Cheers,
Dennis

Jay Chen wrote:
> Hi Martin,
>
> For this plugin depends on the great effort from
> http://simile.mit.edu/timeline which is a javascript component that best
> used in client-server mode. So I choose use a web server in the plugin. To
> keep the plugin simple, I use the simple OSGi http service and it was a lazy
> approching. Maybe I should change to use the org.eclipse.equinox.http.jetty
> which can do more server configuration as the Eclipse Help does. But it is a
> heavier implementation than OSGi http service.
>
> About the your suggestion of offline mode, I think it will increase the
> complication of manage the javascript source and the datasource locally,
> and reduce the performance (must write datasource to somewhere). But I will
> try it.
>
> Anyway, thanks for your feedback.
>
> "Martin Klinke" <mk@nospam.org> wrote in message
> news:fcvur0$2m2$1@build.eclipse.org...
>> Jay,
>>
>> This is really a great idea, I have tried your plug-in and after setting
>> the http port via the command line it worked for me. However, it is a
>> little annoying to define a new port for each instance of eclipse, since
>> I'm often running two or three at once. I don't know if it's possible with
>> the current implementation of the timeline component, but a solution could
>> be to run it offline and configure it only via the browser widget API
>> (assuming you are using that) without having a web server.
>>
>> I would enjoy hearing your thoughts about this.
>> Thanks for your great work so far!
>>
>> Martin Klinke
>>
>> Jay Chen wrote:
>>> Good morning/afternoon/evening,
>>>
>>> Please forgive me if I post the wrong place, but i definitely think it
>>> will help to mylyn users.
>>>
>>> I recently start a eclipse plugin project which use Timeline view (from
>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>> timeline view.
>>>
>>> The project is http://code.google.com/p/eclipsetimeline/, though it is in
>>> beta state, I hope someone can take a try and provide precious feedback
>>> for me.
>>>
>>> Thanks.
>
>
Re: Eclipse timeline plugin [message #32820 is a reply to message #31069] Thu, 11 October 2007 14:41 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Hi,

Sorry for the late reply, i had a long vacation, :).

Thanks for your hint Dennis, i have found a work around for this issue.

If the http service is not avaliable, and BundleContext has no
org.osgi.service.http.port property, set a system property
org.osgi.service.http.port with a unused local port then start
org.eclipse.equinox.http will resolve this problem.

To Martin, i had update the update site files, please update your plugins.

To other people who are intersted with this plugin, since here is mylyn
newsgroup, if you had any issues or suggestions on this plugin, please feel
free to post it in the project issues page, instead here. I think here is
used to talk about mylyn mostly. :).


"Dennis Vaughn" <devaughn@cisco.com>
??????:fdgrce$6go$1@build.eclipse.org...
> For the jetty plugin if you specify 0 for the port then it uses the first
> available port. You can then retrieve the http service and get the port
> property to see what port it used. I thought this was true for the osgi
> http service as well. At least this way a port would not need to be
> specified. I have not used the timeline plugin so I am not sure if this
> solution would work for you.
>
> Cheers,
> Dennis
>
> Jay Chen wrote:
>> Hi Martin,
>>
>> For this plugin depends on the great effort from
>> http://simile.mit.edu/timeline which is a javascript component that best
>> used in client-server mode. So I choose use a web server in the plugin.
>> To keep the plugin simple, I use the simple OSGi http service and it was
>> a lazy approching. Maybe I should change to use the
>> org.eclipse.equinox.http.jetty which can do more server configuration as
>> the Eclipse Help does. But it is a heavier implementation than OSGi http
>> service.
>>
>> About the your suggestion of offline mode, I think it will increase the
>> complication of manage the javascript source and the datasource locally,
>> and reduce the performance (must write datasource to somewhere). But I
>> will try it.
>>
>> Anyway, thanks for your feedback.
>>
>> "Martin Klinke" <mk@nospam.org> wrote in message
>> news:fcvur0$2m2$1@build.eclipse.org...
>>> Jay,
>>>
>>> This is really a great idea, I have tried your plug-in and after setting
>>> the http port via the command line it worked for me. However, it is a
>>> little annoying to define a new port for each instance of eclipse, since
>>> I'm often running two or three at once. I don't know if it's possible
>>> with the current implementation of the timeline component, but a
>>> solution could be to run it offline and configure it only via the
>>> browser widget API (assuming you are using that) without having a web
>>> server.
>>>
>>> I would enjoy hearing your thoughts about this.
>>> Thanks for your great work so far!
>>>
>>> Martin Klinke
>>>
>>> Jay Chen wrote:
>>>> Good morning/afternoon/evening,
>>>>
>>>> Please forgive me if I post the wrong place, but i definitely think it
>>>> will help to mylyn users.
>>>>
>>>> I recently start a eclipse plugin project which use Timeline view (from
>>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>>> timeline view.
>>>>
>>>> The project is http://code.google.com/p/eclipsetimeline/, though it is
>>>> in beta state, I hope someone can take a try and provide precious
>>>> feedback for me.
>>>>
>>>> Thanks.
>>
>>
>
Re: Eclipse timeline plugin [message #32856 is a reply to message #28876] Thu, 11 October 2007 14:41 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Hi David,

It is fixed, please update your plugins.

"David Rothenberger" <daveroth@acm.org>
??????:fcej55$nut$1@build.eclipse.org...
> On 9/13/2007 10:48 PM, Jay Chen wrote:
>> To David Rothenberger, the bug had fixed, please update the Timeline
>> features.
>
> Thanks! That did fix the problem.
>
> I did encounter one other small bug, though. If I click on Scroll To Date
> ... and then Today, I lose all events. If I click on OK in the same box,
> they all come back.
>
> --
> David Rothenberger ---- daveroth@acm.org
>
> QOTD:
> "She's about as smart as bait."
>
Re: Eclipse timeline plugin [message #35386 is a reply to message #25224] Sat, 03 November 2007 19:58 Go to previous messageGo to next message
Willian Mitsuda is currently offline Willian MitsudaFriend
Messages: 27
Registered: July 2009
Junior Member
Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
>
> Thanks.
>
>

Hi, I'm willing to try this plugin, but update manager complains
org.eclipse.equinox.http bundle is not available even it is.

Also, where is the source code? I was willing to take a look in why that
error was happening, but SVN repository in google code is empty.

Willian.
Re: Eclipse timeline plugin [message #35419 is a reply to message #35386] Sat, 03 November 2007 22:14 Go to previous messageGo to next message
Eugene Kuleshov is currently offline Eugene KuleshovFriend
Messages: 504
Registered: July 2009
Senior Member
Willian Mitsuda wrote:
> Hi, I'm willing to try this plugin, but update manager complains
> org.eclipse.equinox.http bundle is not available even it is.
>
> Also, where is the source code? I was willing to take a look in why
> that error was happening, but SVN repository in google code is empty.
By the way, why does that plugin require http server? Can't you just
serve a content from the Java code directly to the browser widget and
hook up some listeners to handle events from browser widget?

regards,
Eugene
Re: Eclipse timeline plugin [message #36669 is a reply to message #25224] Mon, 19 November 2007 13:42 Go to previous messageGo to next message
Andreas Goetz is currently offline Andreas GoetzFriend
Messages: 110
Registered: July 2009
Senior Member
Nice idea- but can't get it to run. After installing, I can show the view,
but all I get is (presumably) a javascirpt error:
Caught exception: [object Error]
Details: undefined

Any idea what I'm doing wrong?

Thanks,
Andi

"Jay Chen" <chen4613@gmail.com> wrote in message
news:fbitqj$j4i$1@build.eclipse.org...
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it
> will help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it
> integrate with Mylyn to show Mylyn tasks modification in the scrolling
> timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback
> for me.
>
> Thanks.
>
Re: Eclipse timeline plugin [message #52579 is a reply to message #32820] Thu, 10 July 2008 07:14 Go to previous messageGo to next message
Andreas Goetz is currently offline Andreas GoetzFriend
Messages: 110
Registered: July 2009
Senior Member
Hi Jay,

I really like the plugin and would like to extend it. Any chance you
could release the sources or upgrade it to current Mylyn 3.0 release?

Thanks,
Andi

Jay Chen wrote:

> To other people who are intersted with this plugin, since here is mylyn
> newsgroup, if you had any issues or suggestions on this plugin, please feel
> free to post it in the project issues page, instead here. I think here is
> used to talk about mylyn mostly. :).
Re: Eclipse timeline plugin [message #70339 is a reply to message #25224] Tue, 07 July 2009 16:06 Go to previous messageGo to next message
Andreas Goetz is currently offline Andreas GoetzFriend
Messages: 110
Registered: July 2009
Senior Member
Hi everybody,

as I was interested in brushing up my Eclipse skills, I've gone ahead
and hacked together an updated version of this plugin from the
distributes jar files. No source had been made public, but the jars were
under New BSD License according to http://code.google.com/p/eclipsetimeline/

So.. if anybody is interested, I'd be happy to provide what I've got
sofar. Basically working in Eclipse 3.5 environment with Mylyn 3.2

Best regards,
Andreas


On 04.09.2007 08:26, Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
>
> Thanks.
Re: Eclipse timeline plugin [message #481521 is a reply to message #70339] Fri, 21 August 2009 11:43 Go to previous messageGo to next message
Thomas Kernstock is currently offline Thomas KernstockFriend
Messages: 29
Registered: July 2009
Location: Vienna
Junior Member
Andreas Goetz wrote on Tue, 07 July 2009 12:06

So.. if anybody is interested, I'd be happy to provide what I've got
sofar. Basically working in Eclipse 3.5 environment with Mylyn 3.2

Best regards,
Andreas


Hi Andreas,

I'm working with eclipse 3.5 too and would be very interested in the fixed plugin !
Unfortunately I can't enable the "private message" feature in my profile and don't want to post my emailaddress here. Could you attach the plugin to a message here or provide a link ?

best regards
Thomas
Re: Eclipse timeline plugin [message #482444 is a reply to message #481521] Wed, 26 August 2009 14:51 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: tagadax.voila.fr

Hi Andreas,

I am also working with eclipse 3.5 and Mylyn 3.2, and I would like to use
your timeline development to see Mylyn tasks in it, but when I open the
Timeline view in Eclipse, I have the following message :
HttpService is not started. Please check the OSGi HTTP service
configuration, make sure the port is not in used.
Could you please help me to solve this problem? Thank you in advance.
Re: Eclipse timeline plugin [message #482445 is a reply to message #481521] Wed, 26 August 2009 14:54 Go to previous message
Eclipse UserFriend
Originally posted by: tagadax.voila.fr

Hello,
I am trying to use timeline, but :
In the timeline view in Eclipse, I have the following message :
HttpService is not started. Please check the OSGi HTTP service
configuration, make sure the port is not in used.

Could you please help me? I would like to see mylyn tasks in timeline in
Eclipse.

Best regards.
Re: Eclipse timeline plugin [message #580019 is a reply to message #25224] Thu, 06 September 2007 23:34 Go to previous message
Mik Kersten is currently offline Mik KerstenFriend
Messages: 287
Registered: July 2009
Senior Member
Cool! Please consider adding this to the Mylyn Extensions page. I just
added a Utilities section for these sorts of extensions:

http://wiki.eclipse.org/Mylyn_Extensions

Mik

Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
Re: Eclipse timeline plugin [message #580472 is a reply to message #25224] Fri, 07 September 2007 18:20 Go to previous message
Kim Sullivan is currently offline Kim SullivanFriend
Messages: 44
Registered: July 2009
Member
Hi,

> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.

I wanted to try it, but couldn't get it to run. After I restarted Eclipse
and opened the Timeline view, I got the following error:
"HttpService not started. Please check the OSGi HTTP service
configuration, make sure the port is not in used."

Kim
Re: Eclipse timeline plugin [message #580664 is a reply to message #26923] Mon, 10 September 2007 09:53 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

It may caused by your port 80 is in used. Eclipse Timeline depends on
HttpService, and the OSGi HttpService's default port is 80, if it is in
used, the HTTPService will start fail, hence, can't start the timeline view.

You can try to start eclipse with
argument -Dorg.osgi.service.http.port=other port.


"Kim Sullivan" <alicebot@seznam.cz> wrote in message
news:fbs4pj$p0f$1@build.eclipse.org...
> Hi,
>
>> The project is http://code.google.com/p/eclipsetimeline/, though it is in
>> beta state, I hope someone can take a try and provide precious feedback
>> for
>> me.
>
> I wanted to try it, but couldn't get it to run. After I restarted Eclipse
> and opened the Timeline view, I got the following error:
> "HttpService not started. Please check the OSGi HTTP service
> configuration, make sure the port is not in used."
>
> Kim
OT: OSGi (was Re: Eclipse timeline plugin) [message #580730 is a reply to message #27200] Mon, 10 September 2007 12:56 Go to previous message
Jay Levitt is currently offline Jay LevittFriend
Messages: 4
Registered: July 2009
Junior Member
On Mon, 10 Sep 2007 17:53:25 +0800, Jay Chen wrote:

> It may caused by your port 80 is in used. Eclipse Timeline depends on
> HttpService, and the OSGi HttpService's default port is 80, if it is in
> used, the HTTPService will start fail, hence, can't start the timeline view.

Since you sound like you know what you're talking about - could you tell me
what the heck OSGi is? I went to their web site last week, and all I could
figure out is that it's a thing to enable things in the something space.

Jay
Re: Eclipse timeline plugin [message #580825 is a reply to message #27200] Tue, 11 September 2007 16:58 Go to previous message
Kim Sullivan is currently offline Kim SullivanFriend
Messages: 44
Registered: July 2009
Member
Jay Chen wrote:
> It may caused by your port 80 is in used. Eclipse Timeline depends on
> HttpService, and the OSGi HttpService's default port is 80, if it is in
> used, the HTTPService will start fail, hence, can't start the timeline view.
>
> You can try to start eclipse with
> argument -Dorg.osgi.service.http.port=other port.

Doesn't help, I still get the same error (I checked the eclipse log,
there are no errors in there). I never used the osgi http service, is
there anything else I have to do to configure it?

Kim
Re: Eclipse timeline plugin [message #580843 is a reply to message #25224] Tue, 11 September 2007 23:06 Go to previous message
David Rothenberger is currently offline David RothenbergerFriend
Messages: 5
Registered: July 2009
Junior Member
On 9/3/2007 11:26 PM, Jay Chen wrote:
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.

I tried out this plugin yesterday and really like it. One question: Can
it display information about Mylyn tasks from repositories other than
the local one? I have a Trac repository and the timeline doesn't seem to
include tasks from that repository.

--
David Rothenberger ---- daveroth@acm.org

wolf, n.:
A man who knows all the ankles.
Re: OSGi (was Re: Eclipse timeline plugin) [message #580985 is a reply to message #27274] Thu, 13 September 2007 03:15 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

I am not a OSGi guru, and i think i am not master OSGi in deep, so i can't
answer you what the OSGi really is.

I think do more google search, visist wikipedia may help you some, or you
can post question in eclipse.technology.equinox group or other OSGi mailling
list.

Also, i think do some research on eclipse architecture is a plus to help you
understand OSGi.

"Jay Levitt" <jay+news@jay.fm> wrote in message
news:dn8eegj6y9em.dlg@jay.fm...
> On Mon, 10 Sep 2007 17:53:25 +0800, Jay Chen wrote:
>
>> It may caused by your port 80 is in used. Eclipse Timeline depends on
>> HttpService, and the OSGi HttpService's default port is 80, if it is in
>> used, the HTTPService will start fail, hence, can't start the timeline
>> view.
>
> Since you sound like you know what you're talking about - could you tell
> me
> what the heck OSGi is? I went to their web site last week, and all I
> could
> figure out is that it's a thing to enable things in the something space.
>
> Jay
Re: Eclipse timeline plugin [message #581006 is a reply to message #27826] Thu, 13 September 2007 03:24 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Do you install the org.eclipse.equinox.http?

I recommend you to install it use the update site
http://eclipsetimeline.googlecode.com/svn/updates, it can resolved the
dependcy issue.

If it still can't work, plz post your eclipse configuration details.

"Kim Sullivan" <alicebot@seznam.cz> wrote in message
news:fc6hfd$fr7$1@build.eclipse.org...
> Jay Chen wrote:
>> It may caused by your port 80 is in used. Eclipse Timeline depends on
>> HttpService, and the OSGi HttpService's default port is 80, if it is in
>> used, the HTTPService will start fail, hence, can't start the timeline
>> view.
>>
>> You can try to start eclipse with
>> argument -Dorg.osgi.service.http.port=other port.
>
> Doesn't help, I still get the same error (I checked the eclipse log, there
> are no errors in there). I never used the osgi http service, is there
> anything else I have to do to configure it?
>
> Kim
Re: Eclipse timeline plugin [message #581030 is a reply to message #27866] Thu, 13 September 2007 03:30 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Yes, there is bug showing all task groups, currently just show task
categories, and i am trying to fix it.

Since i am not familiar with Mylyn API, do you have any advisement on
retreiveing all task groups and retreiveing special groups tasks?

I am cleaning up the code, i will upload the code soon.

"David Rothenberger" <daveroth@acm.org> wrote in message
news:fc771c$kde$1@build.eclipse.org...
> On 9/3/2007 11:26 PM, Jay Chen wrote:
>> I recently start a eclipse plugin project which use Timeline view (from
>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>> timeline view.
>
> I tried out this plugin yesterday and really like it. One question: Can it
> display information about Mylyn tasks from repositories other than the
> local one? I have a Trac repository and the timeline doesn't seem to
> include tasks from that repository.
>
> --
> David Rothenberger ---- daveroth@acm.org
>
> wolf, n.:
> A man who knows all the ankles.
Re: Eclipse timeline plugin [message #581044 is a reply to message #28143] Thu, 13 September 2007 08:24 Go to previous message
Kim Sullivan is currently offline Kim SullivanFriend
Messages: 44
Registered: July 2009
Member
Jay Chen wrote:
> Do you install the org.eclipse.equinox.http?
>
> I recommend you to install it use the update site
> http://eclipsetimeline.googlecode.com/svn/updates, it can resolved the
> dependcy issue.
>
> If it still can't work, plz post your eclipse configuration details.

Yes, I originally installed it using the update site, and some
dependency got resolved (I think Eclipse Project Equinox bundle
feature). Here are my configuration details (the only unusual thing
would be using the mylyn dev builds instead of the release or the
milestone... the activity.xml file has changed since the Europa release).

*** Platform Details:

*** System properties:
awt.toolkit=sun.awt.windows.WToolkit
eclipse.buildId=I20070323-1616
eclipse.commands=-os
win32
-ws
win32
-arch
x86
-showsplash
-launcher
D:\Progs\eclipse\eclipse.exe
-name
Eclipse
--launcher.library
D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher.win32. win32.x86_1.0.0.v20070523\eclipse_1017a.dll
-startup
D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0. v20070606.jar
-Dorg.osgi.service.http.port=2001
-vm
C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
eclipse.ee.install.verify=false
eclipse.product=org.eclipse.sdk.ide
eclipse.startTime=1189671460687
eclipse.vm=C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
eclipse.vmargs=-Xmx256M
-XX:MaxPermSize=256m
-Djava.class.path=D:\Progs\eclipse\plugins\org.eclipse.equin ox.launcher_1.0.0.v20070606.jar
eof=eof
file.encoding=Cp1250
file.encoding.pkg=sun.io
file.separator=\
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.class.path=D:\Progs\eclipse\plugins\org.eclipse.equinox .launcher_1.0.0.v20070606.jar
java.class.version=50.0
java.endorsed.dirs=C:\Program Files\Java\jre1.6.0_02\lib\endorsed
java.ext.dirs=C:\Program
Files\Java\jre1.6.0_02\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
java.home=C:\Program Files\Java\jre1.6.0_02
java.io.tmpdir=C:\DOCUME~1\User\LOCALS~1\Temp\
java.library.path=D:\Progs\eclipse;.;C:\WINDOWS\Sun\Java\bin ;C:\WINDOWS\system32;C:\WINDOWS;C:\Program
Files\Java\jre1.6.0_02\bin\client;C:\Program
Files\Java\jre1.6.0_02\bin;E:\cygwin\bin\;D:\Progs\MinGW\bin ;D:\Progs\Python24\.;D:\Program
Files\Borland\BDS\3.0\Bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ WINDOWS\System32\Wbem;D:\Program
Files\Common
Files\GTK\2.0\bin;D:\progs\PHP\;d:\progs\svn\bin\;"C:\Progra~1\Java\jdk1.6.0 "\bin;d:\Progs\ant\bin;D:\Program
Files\WinSCP\;D:\Progs\svk-2.0.0-1\bin;D:\My Documents\Borland Studio
Projects\Bpl;D:\Modeltech_xe_starter\win32xoem;D:\Program Files\MKVtoolnix
java.runtime.name=Java(TM) SE Runtime Environment
java.runtime.version=1.6.0_02-b06
java.specification.name=Java Platform API Specification
java.specification.vendor=Sun Microsystems Inc.
java.specification.version=1.6
java.vendor=Sun Microsystems Inc.
java.vendor.url=http://java.sun.com/
java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
java.version=1.6.0_02
java.vm.info=mixed mode
java.vm.name=Java HotSpot(TM) Client VM
java.vm.specification.name=Java Virtual Machine Specification
java.vm.specification.vendor=Sun Microsystems Inc.
java.vm.specification.version=1.0
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=1.6.0_02-b06
line.separator=

org.apache.commons.logging.Log=org.apache.commons.logging.im pl.SimpleLog
org.apache.commons.logging.simplelog.log.httpclient.wire.hea der=off
org.apache.commons.logging.simplelog.log.org.apache.commons. httpclient=off
org.eclipse.equinox.launcher.splash.handle=32375712
org.eclipse.equinox.launcher.splash.location=d:\Progs\eclips e\plugins\org.eclipse.platform_3.3.0.v20070613\splash.bmp
org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSG i/Minimum-1.1,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,Ja vaSE-1.6
org.osgi.framework.language=cs
org.osgi.framework.os.name=WindowsXP
org.osgi.framework.os.version=5.1
org.osgi.framework.processor=x86
org.osgi.framework.system.packages=javax.accessibility,javax .activation,javax.activity,javax.annotation,javax.annotation .processing,javax.crypto,javax.crypto.interfaces,javax.crypt o.spec,javax.imageio,javax.imageio.event,javax.imageio.metad ata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,jav ax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap ,javax.lang.model,javax.lang.model.element,javax.lang.model. type,javax.lang.model.util,javax.management,javax.management .loading,javax.management.modelmbean,javax.management.monito r,javax.management.openmbean,javax.management.relation,javax .management.remote,javax.management.remote.rmi,javax.managem ent.timer,javax.naming,javax.naming.directory,javax.naming.e vent,javax.naming.ldap,javax.naming.spi,javax.net,javax.net. ssl,javax.print,javax.print.attribute,javax.print.attribute. standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.r mi.ssl,javax.script,javax.security.auth,javax.security.auth. callback,javax.security.auth.
kerberos,javax.security.auth.login,javax.security.auth.spi,j avax.security.auth.x500,javax.security.cert,javax.security.s asl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sample d,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.s ql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swin g.border,javax.swing.colorchooser,javax.swing.event,javax.sw ing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,java x.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.s ynth,javax.swing.table,javax.swing.text,javax.swing.text.htm l,javax.swing.text.html.parser,javax.swing.text.rtf,javax.sw ing.tree,javax.swing.undo,javax.tools,javax.transaction,java x.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.ann otation,javax.xml.bind.annotation.adapters,javax.xml.bind.at tachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xm l.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xm l.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.cr ypto.dsig.spec,javax.xml.datat
ype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,jav ax.xml.stream,javax.xml.stream.events,javax.xml.stream.util, javax.xml.transform,javax.xml.transform.dom,javax.xml.transf orm.sax,javax.xml.transform.stax,javax.xml.transform.stream, javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax .xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,jav ax.xml.ws.spi,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,or g.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.Dyn AnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,o rg.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNa ming.NamingContextExtPackage,org.omg.CosNaming.NamingContext Package,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAn y.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org. omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPac kage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.P ortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer ,org.omg.PortableServer.Curren
tPackage,org.omg.PortableServer.POAManagerPackage,org.omg.Po rtableServer.POAPackage,org.omg.PortableServer.portable,org. omg.PortableServer.ServantLocatorPackage,org.omg.SendingCont ext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap, org.w3c.dom.events,org.w3c.dom.ls,org.xml.sax,org.xml.sax.ex t,org.xml.sax.helpers
org.osgi.framework.vendor=Eclipse
org.osgi.framework.version=1.4.0
org.osgi.supports.framework.extension=true
org.osgi.supports.framework.fragment=true
org.osgi.supports.framework.requirebundle=true
os.arch=x86
os.name=Windows XP
os.version=5.1
osgi.arch=x86
osgi.bundles=org.eclipse.equinox.common@2:start,
org.eclipse.update.configurator@3:start, org.eclipse.core.runtime@start
osgi.bundlestore=D:\Progs\eclipse\configuration\org.eclipse. osgi\bundles
osgi.compatibility.bootdelegation=true
osgi.configuration.area=file:/D:/Progs/eclipse/configuration /
osgi.framework=file:/d:/Progs/eclipse/plugins/org.eclipse.os gi_3.3.0.v20070530.jar
osgi.framework.beginningstartlevel=1
osgi.framework.shape=jar
osgi.framework.version=3.3.0.v20070530
osgi.install.area=file:/D:/Progs/eclipse/
osgi.instance.area=file:/D:/.projects/ibm/eclipse-workspace/
osgi.instance.area.default=file:/D:/.windows/workspace/
osgi.logfile=D:\.projects\ibm\eclipse-workspace\.metadata\.l og
osgi.manifest.cache=D:\Progs\eclipse\configuration\org.eclip se.osgi\manifests
osgi.nl=cs_CZ
osgi.os=win32
osgi.splashLocation=d:\Progs\eclipse\plugins\org.eclipse.pla tform_3.3.0.v20070613\splash.bmp
osgi.splashPath=platform:/base/plugins/org.eclipse.platform
osgi.syspath=d:\Progs\eclipse\plugins
osgi.ws=win32
path.separator=;
sun.arch.data.model=32
sun.boot.class.path=C:\Program
Files\Java\jre1.6.0_02\lib\resources.jar;C:\Program
Files\Java\jre1.6.0_02\lib\rt.jar;C:\Program
Files\Java\jre1.6.0_02\lib\sunrsasign.jar;C:\Program
Files\Java\jre1.6.0_02\lib\jsse.jar;C:\Program
Files\Java\jre1.6.0_02\lib\jce.jar;C:\Program
Files\Java\jre1.6.0_02\lib\charsets.jar;C:\Program
Files\Java\jre1.6.0_02\classes
sun.boot.library.path=C:\Program Files\Java\jre1.6.0_02\bin
sun.cpu.endian=little
sun.cpu.isalist=
sun.desktop=windows
sun.io.unicode.encoding=UnicodeLittle
sun.jnu.encoding=Cp1250
sun.management.compiler=HotSpot Client Compiler
sun.os.patch.level=Service Pack 2
user.country=CZ
user.dir=D:\Progs\eclipse
user.home=D:\.windows
user.language=cs
user.name=User
user.timezone=Europe/Prague
user.variant=

*** Features:
org.eclipse.cvs (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS Client"
org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
Client SDK"
org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code Generator"
org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
Generation"
org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
Generation UI"
org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
Generator UI"
org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common"
org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI"
org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert Support"
org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Programmers Guide"
org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore"
org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit Support"
org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit"
org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI"
org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping "
org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
Framework (EMF) - org.eclipse.emf.mapping.ecore"
org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor"
org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI"
org.eclipse.emf.ocl (1.1.0.v200706071450-10-7w311817312619) "Object
Constraint Language (OCL) 2.0 Compatibility API"
org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
Technology Query Framework"
org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
Framework Technology Query OCL"
org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Source"
org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Transaction Core"
org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Model Validation Core"
org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Validation Support for OCL"
org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Workbench Core"
org.eclipse.gef (3.3.0.v20070620) "Graphical Editing Framework"
org.eclipse.gmf (1.0.100.v20070601-1400-7d-ETeEYjiMWQX3az0fBWRjypkm7)
"Graphical Modeling Framework"
org.eclipse.jdt (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR) "Eclipse
Java Development Tools"
org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
"Eclipse Java Development Tools SDK"
org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET"
org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET Documentation"
org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling
Framework Technologies - JET Examples"
org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET SDK"
org.eclipse.mylyn_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.bugzilla_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.context_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.ide_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.java_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.pde_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.sandbox.ui_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.mylyn.trac_feature (2.0.0.v20070910-1300) "Mylyn"
org.eclipse.ocl (1.1.0.v200706071450-32-9oA55P5M8C8KCK) "Object
Constraint Language (OCL) 2.0 Parser/Interpreter"
org.eclipse.ocl.uml (1.1.0.v200706071450-10-7w311817182561) "OCL 2.0
Binding for UML"
org.eclipse.pde (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse Plug-in
Development Environment"
org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
Plug-in Development Environment Developer Resources"
org.eclipse.platform (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse
Platform"
org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
"Eclipse Platform Plug-in Developer Resources"
org.eclipse.rcp (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP"
org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG)
"Eclipse RCP Plug-in Developer Resources"
org.eclipse.sdk (3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO) "Eclipse
Project SDK"
org.eclipse.uml2 (2.1.0.v200706251652) "UML2"
org.eclipse.wst (2.0.0.v200706041905-7C-18k0IWJZ93WDDJlQ60nUjTdJp) "Web
Standard Tools (WST)"
org.eclipse.wst.common_core.feature.source
(2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools -
Common Core Source"
org.eclipse.wst.common_ui.feature.source
(2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
Common UI Source"
org.eclipse.wst.sdk (2.0.0.v200706041905-7E-18aNKbx2jys2HTkz0_f_9fLWx)
"Web Standard Tools (WST)"
org.eclipse.wst.server_core.feature.source
(2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server
Core Source"
org.eclipse.wst.server_ui.feature.source
(2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
Server UI Source"
org.eclipse.wst.web_core.feature.source
(2.0.0.v200706041905-42CI_kE77Y7TAMAVHH) "Web Standard Tools - Web Core
Source"
org.eclipse.wst.web_ui.feature.source
(2.0.0.v200706041905-7A0EAeCiWfEJsCcbAj88SKfRX) "Web Standard Tools -
Web UI Source"
org.eclipse.wst.ws_core.feature.source
(2.0.0.v200706210215-7E7KE_QEC3wSU4TpiAiQ0r) "Web Standard Tools - Web
Service Core Source"
org.eclipse.wst.ws_ui.feature.source
(2.0.0.v200706041905-791ECBAufYO8_EaomWE4Fe3uXjR1) "Web Standard Tools -
Web Service UI Source"
org.eclipse.wst.xml_core.feature.source
(2.0.0.v200706041905-787BE9zCYQCCz-CnUGLYQV) "Web Standard Tools - XML
Core Source"
org.eclipse.wst.xml_ui.feature.source
(2.0.0.v200706182145-7A1ECBCnbckz0bZu9wHqAKN3mYpZ) "Web Standard Tools -
XML UI Source"
org.eclipse.xsd (2.3.0.v200706262000) "XML Schema Infoset Model (XSD)"
org.eclipse.xsd.edit (2.3.0.v200706262000) "XML Schema Edit Framework"
org.tigris.subversion.subclipse (1.2.3) "SVN Team Provider Core"

*** Plug-in Registry:
com.ibm.icu (3.6.1.v20070417) "International Components for Unicode for
Java (ICU4J)" [Active]
com.ibm.icu.source (3.6.1.v20070417) "International Components for
Unicode for Java (ICU4J) source plug-in" [Resolved]
com.ibm.icu36.data.update (3.6.1.v20070701_2007f) "ICU4J Data Update
Fragment" [Resolved]
com.jcraft.jsch (0.1.31) "JSch" [Resolved]
eclipse.timeline (1.0.0.200709051757) "Timeline Plug-in" [Starting]
eclipse.timeline.mylyn (1.0.0.200709051757) "Mylyn Tasks Event Source
Plug-in" [Starting]
eclipse.timeline.xml (1.0.0.200709051757) "Xml Event Source Plug-in"
[Starting]
javax.servlet (2.4.0.v200706111738) "Servlet API Bundle" [Resolved]
javax.servlet.jsp (2.0.0.v200706191603) "Java Server Pages API Bundle"
[Resolved]
javax.servlet.jsp.source (2.0.0.v200706191603) "Java Server Pages API
Source Bundle" [Resolved]
javax.servlet.source (2.4.0.v200706111738) "Servlet API Source Bundle"
[Resolved]
javax.wsdl (1.4.0.v200706111329) "WSDL4J" [Resolved]
javax.wsdl15 (1.5.1.v200705290614) "WSDL4J" [Resolved]
javax.xml.rpc (1.1.0.v200706111329) "JAX-RPC" [Resolved]
javax.xml.soap (1.2.0.v200706111329) "SAAJ" [Resolved]
net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200706111738) "SourceForge
LPG" [Resolved]
net.sourceforge.lpg.lpgjavaruntime.source (1.1.0.v200706111738)
"SourceForge LPG Source Bundle" [Resolved]
org.apache.ant (1.7.0.v200706080842) "Apache Ant" [Resolved]
org.apache.ant.source (1.7.0.v200706080842) "Apache Ant Source" [Resolved]
org.apache.axis (1.4.0.v200706191647) "Apache Web Services" [Resolved]
org.apache.batik.bridge (1.6.0.v200706111724) "Apache Batik
Bridge/GVT/Scripting" [Resolved]
org.apache.batik.css (1.6.0.v200706111724) "Apache Batik CSS" [Resolved]
org.apache.batik.dom (1.6.0.v200706111724) "Apache Batik DOM" [Resolved]
org.apache.batik.dom.svg (1.6.0.v200706111724) "Apache Batik SVG DOM"
[Resolved]
org.apache.batik.ext.awt (1.6.0.v200706111724) "Apache Batik AWT
Utilities" [Resolved]
org.apache.batik.parser (1.6.0.v200706111724) "Apache Batik Parser"
[Resolved]
org.apache.batik.svggen (1.6.0.v200706111724) "Apache Batik SVG
Generation" [Resolved]
org.apache.batik.transcoder (1.6.0.v200706111724) "Apache Batik
Transcoder" [Resolved]
org.apache.batik.util (1.6.0.v200706111724) "Apache Batik Utilities"
[Resolved]
org.apache.batik.util.gui (1.6.0.v200706111724) "Apache Batik GUI
Utilities" [Resolved]
org.apache.batik.xml (1.6.0.v200706111724) "Apache Batik XML" [Resolved]
org.apache.commons.discovery (0.2.0.v200706111329) "Jakarta-Commons
Discovery" [Resolved]
org.apache.commons.el (1.0.0.v200706111724) "Apache Commons JSP 2.0
Expression Language Interpreter" [Resolved]
org.apache.commons.el.source (1.0.0.v200706111724) "Apache Commons JSP
2.0 Expression Language Interpreter Source" [Resolved]
org.apache.commons.logging (1.0.4.v200706111724) "Apache Commons Logging
Plug-in" [Resolved]
org.apache.commons.logging.source (1.0.4.v200706111724) "Apache Commons
Logging Plug-in Source" [Resolved]
org.apache.jasper (5.5.17.v200706111724) "Apache Jasper 2 Plug-in"
[Resolved]
org.apache.jasper.source (5.5.17.v200706111724) "Apache Jasper 2 Source
Plug-in" [Resolved]
org.apache.log4j (1.2.13.v200706111418) "Apache Jakarta log4j Plug-in"
[Resolved]
org.apache.lucene (1.9.1.v200706111724) "Apache Lucene" [Resolved]
org.apache.lucene.analysis (1.9.1.v200706181610) "Apache Lucene
Analysis" [Resolved]
org.apache.lucene.analysis.source (1.9.1.v200706181610) "Apache Lucene
Analysis Source" [Resolved]
org.apache.lucene.source (1.9.1.v200706111724) "Apache Lucene Source"
[Resolved]
org.apache.wsil4j (1.0.0.v200706111329) "WSIL4J" [Resolved]
org.apache.xerces (2.8.0.v200705301630) "Apache Xerces-J" [Resolved]
org.apache.xml.resolver (1.1.0.v200705310020) "Apache XmlResolver"
[Resolved]
org.eclipse.ant.core (3.1.200.v20070522) "Ant Build Tool Core" [Starting]
org.eclipse.ant.ui (3.2.100.v20070511) "Ant UI" [Active]
org.eclipse.compare (3.3.0.I20070606) "Compare Support" [Active]
org.eclipse.core.boot (3.1.100.v20060603) "Core Boot" [Starting]
org.eclipse.core.commands (3.3.0.I20070605-0010) "Commands" [Resolved]
org.eclipse.core.contenttype (3.2.100.v20070319) "Eclipse Content
Mechanism" [Active]
org.eclipse.core.databinding (1.0.0.I20070606-0010) "JFace Data Binding"
[Resolved]
org.eclipse.core.databinding.beans (1.0.0.I20070606-0010) "JFace Data
Binding for JavaBeans" [Resolved]
org.eclipse.core.expressions (3.3.0.v20070606-0010) "Expression
Language" [Active]
org.eclipse.core.filebuffers (3.3.0.v20070606-0010) "File Buffers" [Active]
org.eclipse.core.filesystem (1.1.0.v20070606) "Core File Systems" [Active]
org.eclipse.core.filesystem.win32.x86 (1.1.0.v20070510) "Core File
System for Windows" [Resolved]
org.eclipse.core.jobs (3.3.0.v20070423) "Eclipse Jobs Mechanism" [Active]
org.eclipse.core.net (1.0.0.I20070531) "Internet Connection Management"
[Active]
org.eclipse.core.resources (3.3.0.v20070604) "Core Resource Management"
[Active]
org.eclipse.core.resources.compatibility (3.2.100.v20070502) "Core
Resource Management Compatibility Fragment" [Resolved]
org.eclipse.core.resources.win32 (3.3.0.v20070226) "Core Resource
Management Win32 Fragment" [Resolved]
org.eclipse.core.runtime (3.3.100.v20070530) "Core Runtime" [Active]
org.eclipse.core.runtime.compatibility (3.1.200.v20070502) "Core Runtime
Plug-in Compatibility" [Active]
org.eclipse.core.runtime.compatibility.auth (3.2.100.v20070502)
"Authorization Compatibility Plug-in" [Active]
org.eclipse.core.runtime.compatibility.registry (3.2.100.v20070316)
"Eclipse Registry Compatibility Fragment" [Resolved]
org.eclipse.core.variables (3.2.0.v20070426) "Core Variables" [Starting]
org.eclipse.cvs (1.0.0.v20070606) "Eclipse CVS Client" [Starting]
org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
Client SDK" [Resolved]
org.eclipse.debug.core (3.3.0.v20070607-1800) "Debug Core" [Active]
org.eclipse.debug.ui (3.3.0.v20070607-1800) "Debug UI" [Active]
org.eclipse.draw2d (3.2.100.v20070529) "Graphical Editing Framework
Draw2d" [Starting]
org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
[Starting]
org.eclipse.emf.ant (2.3.0.v200706262000) "EMF Ant Tasks" [Starting]
org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code
Generator" [Starting]
org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
Generation" [Starting]
org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
Generation UI" [Starting]
org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
Generator UI" [Starting]
org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common" [Starting]
org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI" [Starting]
org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert
Support" [Starting]
org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Programmers Guide" [Starting]
org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore" [Starting]
org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit
Support" [Starting]
org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
[Starting]
org.eclipse.emf.ecore.change (2.3.0.v200706262000) "EMF Ecore Change
Model" [Starting]
org.eclipse.emf.ecore.change.edit (2.3.0.v200706262000) "EMF Ecore
Change Edit Support" [Starting]
org.eclipse.emf.ecore.xmi (2.3.0.v200706262000) "EMF XMI" [Starting]
org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit" [Starting]
org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI" [Starting]
org.eclipse.emf.exporter (2.3.0.v200706262000) "EMF Model Export
Support" [Starting]
org.eclipse.emf.cheatsheets (2.3.0.v200706262000) "EMF Cheat Sheets"
[Starting]
org.eclipse.emf.importer (2.3.0.v200706262000) "EMF Model Import
Support" [Starting]
org.eclipse.emf.importer.ecore (2.3.0.v200706262000) "EMF Ecore
Importer" [Starting]
org.eclipse.emf.importer.java (2.3.0.v200706262000) "EMF Annotated Java
Importer" [Starting]
org.eclipse.emf.importer.rose (2.3.0.v200706262000) "EMF Rose Importer"
[Starting]
org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping" [Starting]
org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
Framework (EMF) - org.eclipse.emf.mapping.ecore" [Starting]
org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor" [Starting]
org.eclipse.emf.mapping.ecore2ecore (2.3.0.v200706262000) "Ecore to
Ecore Mapping" [Starting]
org.eclipse.emf.mapping.ecore2ecore.editor (2.3.0.v200706262000) "Ecore
to Ecore Mapping Editor" [Starting]
org.eclipse.emf.mapping.ecore2xml (2.3.0.v200706262000) "Ecore to XML
Mapping" [Starting]
org.eclipse.emf.mapping.ecore2xml.ui (2.3.0.v200706262000) "Ecore to XML
Mapping UI" [Starting]
org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI" [Starting]
org.eclipse.emf.ocl (1.1.0.v200706201508) "Object Constraint Language
(OCL) 2.0 Compatibility API" [Starting]
org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
Technology Query Framework" [Starting]
org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
Framework Technology Query OCL" [Starting]
org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
(EMF) Source" [Resolved]
org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Transaction Core" [Starting]
org.eclipse.emf.transaction.ui (1.0.1.v200703301538) "Eclipse Modeling
Framework Technology Transaction UI" [Starting]
org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Model Validation Core" [Starting]
org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Validation Support for OCL" [Resolved]
org.eclipse.emf.validation.ui (1.1.0.v200703301524) "Eclipse Modeling
Framework Technology Validation UI" [Starting]
org.eclipse.emf.validation.ui.ide (1.0.1.v200703301524) "Eclipse
Modeling Framework Technology Validation UI IDE" [Starting]
org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
Framework Technology Workbench Core" [Starting]
org.eclipse.emf.workspace.ui (1.0.100.v200703301538) "Eclipse Modeling
Framework Technology Workbench UI" [Starting]
org.eclipse.equinox.app (1.0.0.v20070606) "Equinox Application
Container" [Active]
org.eclipse.equinox.common (3.3.0.v20070426) "Common Eclipse Runtime"
[Active]
org.eclipse.equinox.device (1.0.0.v20070226) "Device Access Service"
[Resolved]
org.eclipse.equinox.event (1.0.100.v20070516) "Event Admin" [Resolved]
org.eclipse.equinox.http (1.0.100.v20070423) "HTTP Service" [Resolved]
org.eclipse.equinox.http.jetty (1.0.0.v20070607) "Jetty Http Service"
[Starting]
org.eclipse.equinox.http.registry (1.0.0.v20070608) "Http Service
Registry Extensions" [Resolved]
org.eclipse.equinox.http.servlet (1.0.0.v20070606) "Http Services
Servlet" [Starting]
org.eclipse.equinox.http.servletbridge (1.0.0.v20070523) "Servletbridge
Http Service" [Resolved]
org.eclipse.equinox.jsp.jasper (1.0.0.v20070607) "Jasper Jsp Support
Bundle" [Starting]
org.eclipse.equinox.jsp.jasper.registry (1.0.0.v20070607) "Jasper Jsp
Registry Support Plug-in" [Starting]
org.eclipse.equinox.launcher (1.0.0.v20070606) "Equinox Launcher" [Resolved]
org.eclipse.equinox.launcher.win32.win32.x86 (1.0.0.v20070523) "Equinox
Launcher Win32 X86 Fragment" [Resolved]
org.eclipse.equinox.log (1.0.100.v20070226) "Log Service" [Resolved]
org.eclipse.equinox.metatype (1.0.0.v20070226) "Meta Type" [Resolved]
org.eclipse.equinox.preferences (3.2.100.v20070522) "Eclipse Preferences
Mechanism" [Active]
org.eclipse.equinox.registry (3.3.0.v20070522) "Extension Registry
Support" [Active]
org.eclipse.equinox.servletbridge (1.0.0.v20070523) "bundleName" [Resolved]
org.eclipse.equinox.useradmin (1.0.0.v20070226) "User Admin Service"
[Resolved]
org.eclipse.gef (3.2.100.v20070620) "Graphical Editing Framework" [Starting]
org.eclipse.gmf (1.0.0.v20070601-1400) "Graphical Modeling Framework"
[Starting]
org.eclipse.gmf.bridge (1.1.0.v20070621-0000) "GMF Models Bridging
Plug-in" [Starting]
org.eclipse.gmf.bridge.ui (1.1.0.v20070621-0000) "GMF Tooling UI" [Starting]
org.eclipse.gmf.bridge.ui.dashboard (2.0.0.v20070621-0000) "GMF
Dashboard" [Starting]
org.eclipse.gmf.codegen (2.0.0.v20070621-0000) "GMF GenModel and Code
Generation" [Starting]
org.eclipse.gmf.codegen.edit (2.0.0.v20070614-1400) "GMF GenModel Edit
Support" [Starting]
org.eclipse.gmf.codegen.ui (1.1.0.v20070621-0000) "GMF Code Generation
UI" [Starting]
org.eclipse.gmf.common (1.1.0.v20070621-0000) "GMF Tooling Commons
Plug-in" [Starting]
org.eclipse.gmf.doc.ui (1.1.0.v20070601-1400) "GMF Documentation
Cheatsheets" [Starting]
org.eclipse.gmf.ecore.editor (2.0.0.v20070621-0000) "ECore Sample
Diagram Plugin" [Starting]
org.eclipse.gmf.graphdef (2.0.0.v20070621-0000) "GMF Graphical
Definition" [Resolved]
org.eclipse.gmf.graphdef.codegen (2.0.0.v20070621-0000) "Graphical
Definition Code Generator" [Starting]
org.eclipse.gmf.graphdef.codegen.ui (1.0.100.v20070621-0000) "Graphical
Definition Code Generator UI Support" [Resolved]
org.eclipse.gmf.graphdef.edit (2.0.0.v20070601-1400) "GMFGraph Edit
Support" [Starting]
org.eclipse.gmf.map (2.0.0.v20070621-0000) "GMF Mapping Model" [Starting]
org.eclipse.gmf.map.edit (2.0.0.v20070621-0000) "GMF Mapping Edit
Support" [Starting]
org.eclipse.gmf.runtime.common.core (1.0.100.v20070601-1400) "GMF Common
Core" [Starting]
org.eclipse.gmf.runtime.common.ui (1.0.100.v20070601-1400) "GMF Common
UI" [Starting]
org.eclipse.gmf.runtime.common.ui.action (1.0.100.v20070601-1400) "GMF
Common UI Action" [Starting]
org.eclipse.gmf.runtime.common.ui.action.ide (1.0.1.v20070601-1400) "GMF
Common UI Action IDE" [Starting]
org.eclipse.gmf.runtime.common.ui.printing (1.0.1.v20070601-1400) "GMF
Printing" [Starting]
org.eclipse.gmf.runtime.common.ui.printing.win32 (1.0.2.v20070601-1400)
"GMF Printing for Win32" [Resolved]
org.eclipse.gmf.runtime.common.ui.services (1.0.100.v20070601-1400) "GMF
Common UI Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.action
(1.0.100.v20070601-1400) "GMF Common UI Action Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.dnd (1.0.1.v20070601-1400)
"GMF Common UI DND Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.dnd.ide
(1.0.1.v20070601-1400) "GMF Common UI DND IDE Services" [Starting]
org.eclipse.gmf.runtime.common.ui.services.properties
(1.0.1.v20070601-1400) "GMF Common UI Properties Service Framework"
[Starting]
org.eclipse.gmf.runtime.diagram.core (1.0.100.v20070601-1400) "GMF
Diagram Core" [Starting]
org.eclipse.gmf.runtime.diagram.ui (1.0.100.v20070621-0000) "GMF Diagram
UI" [Starting]
org.eclipse.gmf.runtime.diagram.ui.actions (1.0.100.v20070621-0000) "GMF
Diagram Actions" [Starting]
org.eclipse.gmf.runtime.diagram.ui.dnd (1.0.1.v20070601-1400) "GMF
Diagram Browse" [Starting]
org.eclipse.gmf.runtime.diagram.ui.geoshapes (1.0.1.v20070601-1400) "GMF
Geometric Shapes" [Starting]
org.eclipse.gmf.runtime.diagram.ui.printing (1.0.100.v20070621-0000)
"GMF Diagram Printing" [Starting]
org.eclipse.gmf.runtime.diagram.ui.printing.render
(1.0.1.v20070601-1400) "GMF Diagram UI Printing Render Plug-In" [Starting]
org.eclipse.gmf.runtime.diagram.ui.properties (1.0.100.v20070608-1300)
"GMF Diagram UI Properties" [Starting]
org.eclipse.gmf.runtime.diagram.ui.providers (1.0.100.v20070621-0000)
"GMF Diagram Providers" [Starting]
org.eclipse.gmf.runtime.diagram.ui.providers.ide (1.0.1.v20070601-1400)
"GMF Diagram Providers IDE" [Starting]
org.eclipse.gmf.runtime.diagram.ui.render (1.0.100.v20070621-0000) "GMF
Diagram UI Render Plug-In" [Starting]
org.eclipse.gmf.runtime.diagram.ui.resources.editor
(1.0.3.v20070601-1400) "GMF Diagram UI Resources Editor Plug-In" [Starting]
org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide
(1.0.3.v20070601-1400) "GMF IDE Editor" [Starting]
org.eclipse.gmf.runtime.draw2d.ui (1.0.100.v20070621-0000) "GMF Draw2d
Additions" [Starting]
org.eclipse.gmf.runtime.draw2d.ui.render (1.0.100.v20070614-1400) "GMF
Draw2d Image Rendering Additions" [Starting]
org.eclipse.gmf.runtime.draw2d.ui.render.awt (1.0.100.v20070614-1400)
"GMF Draw2d Image AWT based Rendering Additions" [Starting]
org.eclipse.gmf.runtime.emf.clipboard.core (1.0.100.v20070621-0000) "GMF
EMF Clipboard Support" [Starting]
org.eclipse.gmf.runtime.emf.commands.core (1.0.3.v20070601-1400) "GMF
Commands" [Starting]
org.eclipse.gmf.runtime.emf.core (1.0.100.v20070601-1400) "GMF Modeling
Service Layer" [Starting]
org.eclipse.gmf.runtime.emf.type.core (1.0.100.v20070601-1400) "GMF EMF
Type Core" [Starting]
org.eclipse.gmf.runtime.emf.type.ui (1.0.1.v20070601-1400) "GMF EMF Type
UI" [Starting]
org.eclipse.gmf.runtime.emf.ui (1.0.100.v20070621-0000) "GMF MSL UI"
[Starting]
org.eclipse.gmf.runtime.emf.ui.properties (1.0.2.v20070601-1400) "GMF
EMF UI Properties Providers" [Starting]
org.eclipse.gmf.runtime.gef.ui (1.0.1.v20070601-1400) "GMF GEF
Additions" [Starting]
org.eclipse.gmf.runtime.notation (1.0.100.v20070621-0000) "GMF Notation
Model Support" [Starting]
org.eclipse.gmf.runtime.notation.edit (1.0.1.v20070621-0000) "GMF
Notation Edit Support" [Starting]
org.eclipse.gmf.runtime.notation.providers (1.0.1.v20070601-1400) "GMF
Notation Metamodel" [Starting]
org.eclipse.gmf.sdk (1.0.0.v20070601-1400) "Graphical Modeling Framework
SDK" [Starting]
org.eclipse.gmf.tooldef (2.0.0.v20070621-0000) "GMF Tooling Model"
[Starting]
org.eclipse.gmf.tooldef.edit (2.0.0.v20070601-1400) "GMF Tooling Edit
Support" [Starting]
org.eclipse.gmf.validate (1.1.0.v20070621-0000) "GMF Validation" [Starting]
org.eclipse.gmf.xpand (1.0.0.v20070608-1300) "GMF Xpand Template Engine"
[Starting]
org.eclipse.help (3.3.0.v20070524) "Help System Core" [Active]
org.eclipse.help.appserver (3.1.200.v20070510) "Help Application Server"
[Starting]
org.eclipse.help.base (3.3.0.v20070606) "Help System Base" [Starting]
org.eclipse.help.ui (3.3.0.v20070530) "Help System UI" [Starting]
org.eclipse.help.webapp (3.3.0.v20070607) "Help System Webapp" [Starting]
org.eclipse.jdt (3.3.0.v20070607-1300) "Eclipse Java Development Tools"
[Resolved]
org.eclipse.jdt.apt.core (3.3.0.v20070607-1200) "Java Annotation
Processing Core" [Active]
org.eclipse.jdt.apt.pluggable.core (1.0.0.v20070529-2100) "Java Compiler
Apt IDE" [Starting]
org.eclipse.jdt.apt.ui (3.3.0.v20070430-1135) "Java Annotation
Processing UI" [Starting]
org.eclipse.jdt.compiler.apt (1.0.0.v20070510-2000) "Java Compiler Apt"
[Resolved]
org.eclipse.jdt.compiler.tool (1.0.0.v_771) "Java Compiler Tool Support"
[Resolved]
org.eclipse.jdt.core (3.3.0.v_771) "Java Development Tools Core" [Active]
org.eclipse.jdt.core.manipulation (1.1.0.v20070606-0010) "Java Code
Manipulation Functionality" [Active]
org.eclipse.jdt.debug (3.3.0.v20070530a) "JDI Debug Model" [Active]
org.eclipse.jdt.debug.ui (3.2.100.v20070531-1800) "JDI Debug UI" [Active]
org.eclipse.jdt.doc.isv (3.3.0.v20070613) "Eclipse JDT Plug-in Developer
Guide" [Starting]
org.eclipse.jdt.doc.user (3.3.0.v20070608-1300) "Eclipse Java
Development User Guide" [Starting]
org.eclipse.jdt.junit (3.3.0.v20070606-0010) "Java Development Tools
JUnit support" [Starting]
org.eclipse.jdt.junit.runtime (3.3.0.v20070606-0010) "Java Development
Tools JUnit runtime support" [Resolved]
org.eclipse.jdt.junit4.runtime (1.0.100.v20070606-0010) "Java
Development Tools JUnit4 runtime support" [Resolved]
org.eclipse.jdt.launching (3.3.0.v20070510) "Java Development Tools
Launching Support" [Active]
org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
"Eclipse Java Development Tools SDK" [Resolved]
org.eclipse.jdt.ui (3.3.0.v20070607-0010) "Java Development Tools UI"
[Active]
org.eclipse.jem.util (2.0.0.v200705302225) "Java EMF Model Utilities"
[Starting]
org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET" [Starting]
org.eclipse.jet.core (1.0.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET Core" [Starting]
org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET Documentation" [Starting]
org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling
Framework Technologies - JET Examples" [Starting]
org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
Technologies - JET SDK" [Resolved]
org.eclipse.jet.ui (0.8.0.v200704041505) "JET Transformations UI
Plug-in" [Active]
org.eclipse.jface (3.3.0.I20070606-0010) "JFace" [Active]
org.eclipse.jface.databinding (1.1.0.I20070606-0010) "JFace Data Binding
for SWT and JFace" [Resolved]
org.eclipse.jface.text (3.3.0.v20070606-0010) "JFace Text" [Resolved]
org.eclipse.jsch.core (1.0.0.I20070426) "JSch Core" [Active]
org.eclipse.jsch.ui (1.0.0.I20070525) "JSch UI" [Starting]
org.eclipse.ltk.core.refactoring (3.3.0.v20070606-0010) "Refactoring
Core" [Active]
org.eclipse.ltk.ui.refactoring (3.3.0.v20070606-0010) "Refactoring UI"
[Active]
org.eclipse.mylyn (2.0.0.v20070910-1300) "Mylyn" [Starting]
org.eclipse.mylyn.bugzilla.core (2.0.0.v20070910-1300) "Mylyn Bugzilla
Connector Core" [Active]
org.eclipse.mylyn.bugzilla.ide (2.0.0.v20070910-1300) "Mylyn Bugzilla
Connector IDE" [Active]
org.eclipse.mylyn.bugzilla.ui (2.0.0.v20070910-1300) "Mylyn Bugzilla
Connector UI" [Active]
org.eclipse.mylyn.compatibility (2.0.0.v20070910-1300) "Java 5
Compatibility Checker" [Active]
org.eclipse.mylyn.context.core (2.0.0.v20070910-1300) "Mylyn Context
Core" [Active]
org.eclipse.mylyn.context.ui (2.0.0.v20070910-1300) "Mylyn Context UI"
[Active]
org.eclipse.mylyn.help.ui (2.0.0.v20070910-1300) "Mylyn Help" [Starting]
org.eclipse.mylyn.ide.ant (2.0.0.v20070910-1300) "Mylyn Ant UI Plug-in"
[Active]
org.eclipse.mylyn.ide.ui (2.0.0.v20070910-1300) "Mylyn IDE UI" [Active]
org.eclipse.mylyn.java.ui (2.0.0.v20070910-1300) "Mylyn Java" [Active]
org.eclipse.mylyn.monitor.core (2.0.0.v20070910-1300) "Mylyn Monitor
Core" [Resolved]
org.eclipse.mylyn.monitor.ui (2.0.0.v20070910-1300) "Mylyn Monitor UI"
[Active]
org.eclipse.mylyn.pde.ui (2.0.0.v20070910-1300) "Mylyn PDE UI Plug-in"
[Active]
org.eclipse.mylyn.resources.ui (2.0.0.v20070910-1300) "Mylyn Resources
UI" [Active]
org.eclipse.mylyn.sandbox.ui (2.0.0.v20070910-1300) "Mylyn Sandbox
Experimental UI" [Active]
org.eclipse.mylyn.tasks.core (2.0.0.v20070910-1300) "Mylyn Tasks Core"
[Active]
org.eclipse.mylyn.tasks.ui (2.0.0.v20070910-1300) "Mylyn Tasks UI" [Active]
org.eclipse.mylyn.team.cvs (2.0.0.v20070910-1300) "Mylyn Team CVS
Plug-in" [Resolved]
org.eclipse.mylyn.team.ui (2.0.0.v20070910-1300) "Mylyn Team UI" [Active]
org.eclipse.mylyn.trac.core (2.0.0.v20070910-1300) "Mylyn Trac Connector
Core" [Active]
org.eclipse.mylyn.trac.ui (2.0.0.v20070910-1300) "Mylyn Trac Connector
UI" [Active]
org.eclipse.mylyn.web.core (2.0.0.v20070910-1300) "Mylyn Web Core
Plug-in" [Active]
org.eclipse.mylyn.web.ui (2.0.0.v20070910-1300) "Mylyn Web UI" [Starting]
org.eclipse.ocl (1.1.0.v200706201508) "Object Constraint Language (OCL)
2.0 Parser/Interpreter" [Starting]
org.eclipse.ocl.ecore (1.1.0.v200706071450) "OCL 2.0 Binding for Ecore"
[Starting]
org.eclipse.ocl.uml (1.1.0.v200706071450) "OCL 2.0 Binding for UML"
[Starting]
org.eclipse.osgi (3.3.0.v20070530) "OSGi System Bundle" [Active]
org.eclipse.osgi.services (3.1.200.v20070605) "OSGi Release 4.0.1
Services" [Resolved]
org.eclipse.osgi.util (3.1.200.v20070605) "OSGi Release 4.0.1 Utility
Classes" [Resolved]
org.eclipse.pde (3.3.0.v20070608-1300) "Eclipse Plug-in Development
Environment" [Active]
org.eclipse.pde.build (3.3.0.v20070612) "Plug-in Development Environment
Build Support" [Starting]
org.eclipse.pde.core (3.3.0.v20070608-1300) "Plug-in Development Core"
[Active]
org.eclipse.pde.doc.user (3.3.0.v20070614-0800) "Eclipse Plug-in
Development User Guide" [Resolved]
org.eclipse.pde.junit.runtime (3.3.0.v20070608-1300) "PDE JUnit Plug-in
Test" [Resolved]
org.eclipse.pde.runtime (3.3.0.v20070608-1300) "Plug-in Development
Environment Runtime" [Starting]
org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
Plug-in Development Environment Developer Resources" [Resolved]
org.eclipse.pde.ui (3.3.0.v20070608-1300) "Plug-in Development UI" [Active]
org.eclipse.pde.ui.templates (3.3.0.v20070608-1300) "PDE Templates"
[Starting]
org.eclipse.platform (3.3.0.v20070613) "Eclipse Platform" [Starting]
org.eclipse.platform.doc.isv (3.3.0.v20070621) "Eclipse Platform Plug-in
Developer Guide" [Starting]
org.eclipse.platform.doc.user (3.3.0.I20070615-1300) "Eclipse Workbench
User Guide" [Starting]
org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
"Eclipse Platform Plug-in Developer Resources" [Resolved]
org.eclipse.platform.source.win32.win32.x86
(3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse Platform Plug-in
Developer Resources" [Resolved]
org.eclipse.rcp (3.2.0.v20070612) "Eclipse RCP" [Starting]
org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG)
"Eclipse RCP Plug-in Developer Resources" [Resolved]
org.eclipse.rcp.source.win32.win32.x86
(3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP Plug-in Developer
Resources" [Resolved]
org.eclipse.sdk (3.3.0.v20070613) "Eclipse Project SDK" [Starting]
org.eclipse.search (3.3.0.v20070606-0010) "Search Support" [Active]
org.eclipse.swt (3.3.0.v3346) "Standard Widget Toolkit" [Resolved]
org.eclipse.swt.win32.win32.x86 (3.3.0.v3346) "Standard Widget Toolkit
for Windows" [Resolved]
org.eclipse.team.core (3.3.0.I20070607) "Team Support Core" [Active]
org.eclipse.team.cvs.core (3.3.0.I20070607) "CVS Team Provider Core"
[Active]
org.eclipse.team.cvs.ssh (3.2.100.I20061208) "CVS SSH Core" [Starting]
org.eclipse.team.cvs.ssh2 (3.2.100.I20070604) "CVS SSH2" [Starting]
org.eclipse.team.cvs.ui (3.3.0.I20070607) "CVS Team Provider UI" [Active]
org.eclipse.team.ui (3.3.0.I20070607) "Team Support UI" [Active]
org.eclipse.text (3.3.0.v20070606-0010) "Text" [Resolved]
org.eclipse.tomcat (4.1.230.v20070531) "Tomcat Wrapper" [Starting]
org.eclipse.ui (3.3.0.I20070614-0800) "Eclipse UI" [Active]
org.eclipse.ui.browser (3.2.100.v20070524A) "Browser Support" [Starting]
org.eclipse.ui.console (3.2.0.v20070530) "Console" [Active]
org.eclipse.ui.editors (3.3.0.v20070606-0010) "Default Text Editor" [Active]
org.eclipse.ui.externaltools (3.1.200.v20070416) "External Tools" [Active]
org.eclipse.ui.forms (3.3.0.v20070511) "Eclipse Forms" [Active]
org.eclipse.ui.cheatsheets (3.3.0.v20070507) "Cheat Sheets" [Starting]
org.eclipse.ui.ide (3.3.0.I20070620) "Eclipse IDE UI" [Active]
org.eclipse.ui.ide.application (1.0.0.I20070530-0100) "Eclipse IDE UI
Application" [Resolved]
org.eclipse.ui.intro (3.2.100.v20070530) "Welcome Framework" [Starting]
org.eclipse.ui.intro.universal (3.2.100.v20070530A) "Universal Welcome"
[Starting]
org.eclipse.ui.navigator (3.3.0.I20070605-0010) "Common Navigator View"
[Starting]
org.eclipse.ui.navigator.resources (3.3.0.I20070605-0010) "Navigator
Workbench Components" [Starting]
org.eclipse.ui.net (1.0.0.I20070516) "Internet Connection Management UI"
[Active]
org.eclipse.ui.presentations.r21 (3.2.100.I20070605-0010) "R21
Presentation Plug-in" [Starting]
org.eclipse.ui.views (3.2.100.I20070319-0010) "Views" [Active]
org.eclipse.ui.views.properties.tabbed (3.3.0.I20070605-0010) "Tabbed
Properties View" [Starting]
org.eclipse.ui.win32 (3.2.100.I20070319-0010) "Eclipse UI Win32
Enhancements" [Resolved]
org.eclipse.ui.workbench (3.3.0.I20070608-1100) "Workbench" [Active]
org.eclipse.ui.workbench.compatibility (3.2.0.I20070319-0010) "Workbench
Compatibility" [Resolved]
org.eclipse.ui.workbench.texteditor (3.3.0.v20070606-0010) "Text Editor
Framework" [Active]
org.eclipse.uml2 (2.1.0.v200706251652) "UML2" [Resolved]
org.eclipse.uml2.codegen.ecore (1.3.0.v200706251652) "UML2 Ecore Code
Generation" [Starting]
org.eclipse.uml2.codegen.ecore.ui (1.3.0.v200706251652) "UML2 Ecore Code
Generation UI" [Starting]
org.eclipse.uml2.common (1.3.0.v200706251652) "UML2 Common" [Starting]
org.eclipse.uml2.common.edit (1.3.0.v200706251652) "UML2 Common Edit
Support" [Starting]
org.eclipse.uml2.uml (2.1.0.v200706251652) "UML2 UML Model" [Starting]
org.eclipse.uml2.uml.ecore.exporter (2.1.0.v200706251652) "UML2 UML
Exporter for EMF" [Starting]
org.eclipse.uml2.uml.ecore.importer (2.1.0.v200706251652) "UML2 UML
Importer for EMF" [Starting]
org.eclipse.uml2.uml.edit (2.1.0.v200706251652) "UML2 UML Edit Support"
[Starting]
org.eclipse.uml2.uml.editor (2.1.0.v200706251652) "UML2 UML Editor"
[Starting]
org.eclipse.uml2.uml.resources (2.1.0.v200706251652) "UML2 UML
Resources" [Resolved]
org.eclipse.update.configurator (3.2.100.v20070615) "Install/Update
Configurator" [Active]
org.eclipse.update.core (3.2.100.v20070615) "Install/Update Core" [Active]
org.eclipse.update.core.win32 (3.2.100.v20070615) "Install/Update Core
for Windows" [Resolved]
org.eclipse.update.scheduler (3.2.100.v20070615) "Automatic Updates
Scheduler" [Active]
org.eclipse.update.ui (3.2.100.v20070615) "Install/Update UI" [Starting]
org.eclipse.wst (1.0.2.v200706120315) "Web Standard Tools (WST)" [Resolved]
org.eclipse.wst.command.env (1.0.203.v200705302225) "Environment Command
Framework (headless)" [Starting]
org.eclipse.wst.command.env.core (1.0.202.v200705302225) "Environment
Command Framework (core)" [Resolved]
org.eclipse.wst.command.env.doc.user (1.5.1.v200706120315) "Web services
Axis Ant task documentation" [Starting]
org.eclipse.wst.command.env.infopop (1.0.3.v200706110217) "Web services
UI" [Starting]
org.eclipse.wst.command.env.ui (1.0.202.v200705302225) "Environment
Command Framework (GUI)" [Starting]
org.eclipse.wst.common_core.feature.source
(2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools -
Common Core Source" [Resolved]
org.eclipse.wst.common_ui.feature.source
(2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
Common UI Source" [Resolved]
org.eclipse.wst.common.core (1.1.101.v200706120315) "WST Common Core
Plug-in" [Starting]
org.eclipse.wst.common.emf (1.1.103.v200706071630) "EMF Utilities"
[Starting]
org.eclipse.wst.common.emfworkbench.integration (1.1.103.v200706071630)
"EMF Workbench Edit Plug-in" [Starting]
org.eclipse.wst.common.environment (1.0.200.v200705302225) "Enviornment
Plug-in" [Starting]
org.eclipse.wst.common.frameworks (1.1.102.v200706071630) "Common
Frameworks" [Starting]
org.eclipse.wst.common.frameworks.ui (1.1.100.v200706071630) "WTP UI
Plug-in" [Starting]
org.eclipse.wst.common.infopop (1.0.2.v200706110217) "Common WST
infopops" [Starting]
org.eclipse.wst.common.modulecore (1.1.102.v200706071630) "Modulecore
Plug-in" [Starting]
org.eclipse.wst.common.project.facet.core (1.2.0.v200706071740) "Project
Facet Core" [Starting]
org.eclipse.wst.common.project.facet.ui (1.2.0.v200706071742) "Project
Facet UI" [Starting]
org.eclipse.wst.common.snippets (1.1.101.v200705302225) "Snippets View"
[Starting]
org.eclipse.wst.common.ui (1.1.200.v200705302225) "Eclipse Base UI
extensions" [Starting]
org.eclipse.wst.common.ui.properties (1.0.102.v200706120315) "Common
Properties UI" [Starting]
org.eclipse.wst.common.uriresolver (1.1.201.v200705302225) "Common URI
Resolver Framework" [Starting]
org.eclipse.wst.css.core (1.1.101.v200705302225) "Structured Source CSS
Model" [Starting]
org.eclipse.wst.css.ui (1.0.201.v200705302225) "SSE CSS Source Editor"
[Starting]
org.eclipse.wst.doc.isv (1.0.304.v200706112015) "WST ISV Documentation"
[Starting]
org.eclipse.wst.doc.user (1.1.0.v200705302225) "Master User Doc TOC"
[Starting]
org.eclipse.wst.dtd.core (1.1.101.v200705302225) "Structured Source DTD
Core" [Starting]
org.eclipse.wst.dtd.ui (1.0.201.v200705302225) "SSE DTD Source Editor"
[Starting]
org.eclipse.wst.dtd.ui.infopop (1.0.2.v200706110217) "DTD Editor
infopops" [Resolved]
org.eclipse.wst.dtdeditor.doc.user (1.0.300.v200705302225) "DTD Editor
documentation" [Resolved]
org.eclipse.wst.html.core (1.1.101.v200706120811) "Structured Source
HTML Model" [Starting]
org.eclipse.wst.html.ui (1.0.201.v200705302225) "HTML UI Source Editor"
[Starting]
org.eclipse.wst.html.ui.infopop (1.0.2.v200706110217) "HTML editor
infopops" [Resolved]
org.eclipse.wst.internet.cache (1.0.201.v200705302225) "Cache URI
Resolver Plug-in" [Starting]
org.eclipse.wst.internet.monitor.core (1.0.203.v20070608) "Monitor"
[Starting]
org.eclipse.wst.internet.monitor.ui (1.0.203.v20070608) "TCP/IP Monitor"
[Starting]
org.eclipse.wst.javascript.core (1.0.101.v200706071955) "Structured
Source JavaScript Model" [Starting]
org.eclipse.wst.javascript.ui (1.0.101.v200705302225) "SSE JavaScript
Source Editor" [Starting]
org.eclipse.wst.javascript.ui.infopop (1.0.2.v200706110217) "Javascript
infopop" [Resolved]
org.eclipse.wst.server_core.feature.source
(2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server
Core Source" [Resolved]
org.eclipse.wst.server_ui.feature.source
(2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
Server UI Source" [Resolved]
org.eclipse.wst.server.core (1.0.204.v200706111751) "Server Core" [Starting]
org.eclipse.wst.server.http.core (1.0.0.v200705302225) "HTTP Server
Support" [Starting]
org.eclipse.wst.server.http.ui (1.0.0.v200705302225) "HTTP Server UI
Support" [Starting]
org.eclipse.wst.server.preview (1.0.0.v200705302225) "Preview Server
Support" [Starting]
org.eclipse.wst.server.preview.adapter (1.0.0.v200705302225) "HTTP
Preview Support" [Starting]
org.eclipse.wst.server.ui (1.0.204.v20070619) "Server UI" [Starting]
org.eclipse.wst.server.ui.doc.user (1.0.303.v200705302225) "Server Tools
documentation for Web Standard Tools" [Starting]
org.eclipse.wst.server.ui.infopop (1.0.5.v200705302225) "Server Tools
infopops for Web Standard Tools" [Resolved]
org.eclipse.wst.sse.core (1.1.201.v200706212223) "Structured Text Model"
[Starting]
org.eclipse.wst.sse.doc.user (1.0.300.v200705302225) "Structured text
editor and snippets documentation" [Resolved]
org.eclipse.wst.sse.ui (1.0.302.v200706192034) "Structured Source
Editor" [Starting]
org.eclipse.wst.sse.ui.infopop (1.0.102.v200706110217) "SSE infopops"
[Resolved]
org.eclipse.wst.standard.schemas (1.0.1.v200705302225) "Standard Schemas
and DTDs" [Resolved]
org.eclipse.wst.validation (1.1.101.v200706071630) "Validation
Framework" [Starting]
org.eclipse.wst.validation.infopop (1.0.202.v200706110217) "WST
validation infopop plug-in" [Resolved]
org.eclipse.wst.validation.ui (1.1.102.v200706071630) "Validation
Framework UI" [Starting]
org.eclipse.wst.web (1.1.101.v200706071630) "Simple Web Plug-in" [Starting]
org.eclipse.wst.web_core.feature.source
(2.0.0.v200706041905-42CI_kE77Y7TAMAVHH) "Web Standard Tools - Web Core
Source" [Resolved]
org.eclipse.wst.web_ui.feature.source
(2.0.0.v200706041905-7A0EAeCiWfEJsCcbAj88SKfRX) "Web Standard Tools -
Web UI Source" [Resolved]
org.eclipse.wst.web.ui (1.1.101.v200706071630) "Simple Web UI Plug-in"
[Starting]
org.eclipse.wst.web.ui.infopop (1.0.202.v200706110217) "Static Web
infopop" [Starting]
org.eclipse.wst.webtools.doc.user (1.0.300.v200705302225) "Web tools
documentation" [Starting]
org.eclipse.wst.ws (1.0.202.v200705311823) "Web Services" [Starting]
org.eclipse.wst.ws_core.feature.source
(2.0.0.v200706210215-7E7KE_QEC3wSU4TpiAiQ0r) "Web Standard Tools - Web
Service Core Source" [Resolved]
org.eclipse.wst.ws_ui.feature.source
(2.0.0.v200706041905-791ECBAufYO8_EaomWE4Fe3uXjR1) "Web Standard Tools -
Web Service UI Source" [Resolved]
org.eclipse.wst.ws.explorer (1.0.204.v200706061845) "Web Services
Explorer" [Starting]
org.eclipse.wst.ws.infopop (1.0.203.v200706110217) "Web Services UI"
[Starting]
org.eclipse.wst.ws.parser (1.0.201.v200706061845) "Web Services
Description Parser" [Starting]
org.eclipse.wst.ws.ui (1.0.202.v200705311823) "Web Services UI" [Starting]
org.eclipse.wst.wsdl (1.1.0.v200706062140) "WSDL Model" [Starting]
org.eclipse.wst.wsdl.ui (1.2.0.v200706062140) "WSDL UI" [Starting]
org.eclipse.wst.wsdl.ui.doc.user (1.0.300.v200705302225) "WSDL Editor
Documentation" [Starting]
org.eclipse.wst.wsdl.validation (1.1.201.v200706062140) "WSDL Validator"
[Starting]
org.eclipse.wst.wsi (1.0.105.v200706120315) "WSI Conformance Tools"
[Starting]
org.eclipse.wst.wsi.ui (1.0.300.v200706062140) "Soap Monitor" [Starting]
org.eclipse.wst.wsi.ui.doc.user (1.0.203.v200706120315) "WS-I Validation
Documentation" [Resolved]
org.eclipse.wst.xml_core.feature.source
(2.0.0.v200706041905-787BE9zCYQCCz-CnUGLYQV) "Web Standard Tools - XML
Core Source" [Resolved]
org.eclipse.wst.xml_ui.feature.source
(2.0.0.v200706182145-7A1ECBCnbckz0bZu9wHqAKN3mYpZ) "Web Standard Tools -
XML UI Source" [Resolved]
org.eclipse.wst.xml.core (1.1.200.v200706120811) "Structured Source XML
Model" [Starting]
org.eclipse.wst.xml.ui (1.0.300.v200705302225) "XML UI Plugin" [Starting]
org.eclipse.wst.xml.ui.infopop (1.0.2.v200706110217) "XML infopops"
[Resolved]
org.eclipse.wst.xmleditor.doc.user (1.0.300.v200705302225) "XML editor"
[Resolved]
org.eclipse.wst.xsd.core (1.1.200.v200705302225) "XSD Core Plugin"
[Starting]
org.eclipse.wst.xsd.ui (1.2.0.v200706131840) "XML Schema Editor" [Starting]
org.eclipse.wst.xsdeditor.doc.user (1.0.300.v200705302225) "XML schema
editor" [Resolved]
org.eclipse.xsd (2.3.0.v200706262000) "XML Schema Infoset Model (XSD)&qu
Re: Eclipse timeline plugin [message #581112 is a reply to message #28233] Thu, 13 September 2007 12:42 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

I found that the plugin org.eclipse.equinox.http did not start.
Can you open eclipse with osgi console, and try to start plugin
org.eclipse.equinox.http manually to see what happen?

"Kim Sullivan" <alicebot@seznam.cz> wrote in message
news:fcas2t$u23$1@build.eclipse.org...
> Jay Chen wrote:
>> Do you install the org.eclipse.equinox.http?
>>
>> I recommend you to install it use the update site
>> http://eclipsetimeline.googlecode.com/svn/updates, it can resolved the
>> dependcy issue.
>>
>> If it still can't work, plz post your eclipse configuration details.
>
> Yes, I originally installed it using the update site, and some dependency
> got resolved (I think Eclipse Project Equinox bundle feature). Here are my
> configuration details (the only unusual thing would be using the mylyn dev
> builds instead of the release or the milestone... the activity.xml file
> has changed since the Europa release).
>
> *** Platform Details:
>
> *** System properties:
> awt.toolkit=sun.awt.windows.WToolkit
> eclipse.buildId=I20070323-1616
> eclipse.commands=-os
> win32
> -ws
> win32
> -arch
> x86
> -showsplash
> -launcher
> D:\Progs\eclipse\eclipse.exe
> -name
> Eclipse
> --launcher.library
> D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher.win32. win32.x86_1.0.0.v20070523\eclipse_1017a.dll
> -startup
> D:\Progs\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0. v20070606.jar
> -Dorg.osgi.service.http.port=2001
> -vm
> C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
> eclipse.ee.install.verify=false
> eclipse.product=org.eclipse.sdk.ide
> eclipse.startTime=1189671460687
> eclipse.vm=C:\Program Files\Java\jre1.6.0_02\bin\client\jvm.dll
> eclipse.vmargs=-Xmx256M
> -XX:MaxPermSize=256m
> -Djava.class.path=D:\Progs\eclipse\plugins\org.eclipse.equin ox.launcher_1.0.0.v20070606.jar
> eof=eof
> file.encoding=Cp1250
> file.encoding.pkg=sun.io
> file.separator=\
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
> java.awt.printerjob=sun.awt.windows.WPrinterJob
> java.class.path=D:\Progs\eclipse\plugins\org.eclipse.equinox .launcher_1.0.0.v20070606.jar
> java.class.version=50.0
> java.endorsed.dirs=C:\Program Files\Java\jre1.6.0_02\lib\endorsed
> java.ext.dirs=C:\Program
> Files\Java\jre1.6.0_02\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
> java.home=C:\Program Files\Java\jre1.6.0_02
> java.io.tmpdir=C:\DOCUME~1\User\LOCALS~1\Temp\
> java.library.path=D:\Progs\eclipse;.;C:\WINDOWS\Sun\Java\bin ;C:\WINDOWS\system32;C:\WINDOWS;C:\Program
> Files\Java\jre1.6.0_02\bin\client;C:\Program
> Files\Java\jre1.6.0_02\bin;E:\cygwin\bin\;D:\Progs\MinGW\bin ;D:\Progs\Python24\.;D:\Program
> Files\Borland\BDS\3.0\Bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ WINDOWS\System32\Wbem;D:\Program
> Files\Common
> Files\GTK\2.0\bin;D:\progs\PHP\;d:\progs\svn\bin\;"C:\Progra~1\Java\jdk1.6.0 "\bin;d:\Progs\ant\bin;D:\Program
> Files\WinSCP\;D:\Progs\svk-2.0.0-1\bin;D:\My Documents\Borland Studio
> Projects\Bpl;D:\Modeltech_xe_starter\win32xoem;D:\Program Files\MKVtoolnix
> java.runtime.name=Java(TM) SE Runtime Environment
> java.runtime.version=1.6.0_02-b06
> java.specification.name=Java Platform API Specification
> java.specification.vendor=Sun Microsystems Inc.
> java.specification.version=1.6
> java.vendor=Sun Microsystems Inc.
> java.vendor.url=http://java.sun.com/
> java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
> java.version=1.6.0_02
> java.vm.info=mixed mode
> java.vm.name=Java HotSpot(TM) Client VM
> java.vm.specification.name=Java Virtual Machine Specification
> java.vm.specification.vendor=Sun Microsystems Inc.
> java.vm.specification.version=1.0
> java.vm.vendor=Sun Microsystems Inc.
> java.vm.version=1.6.0_02-b06
> line.separator=
>
> org.apache.commons.logging.Log=org.apache.commons.logging.im pl.SimpleLog
> org.apache.commons.logging.simplelog.log.httpclient.wire.hea der=off
> org.apache.commons.logging.simplelog.log.org.apache.commons. httpclient=off
> org.eclipse.equinox.launcher.splash.handle=32375712
> org.eclipse.equinox.launcher.splash.location=d:\Progs\eclips e\plugins\org.eclipse.platform_3.3.0.v20070613\splash.bmp
> org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSG i/Minimum-1.1,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,Ja vaSE-1.6
> org.osgi.framework.language=cs
> org.osgi.framework.os.name=WindowsXP
> org.osgi.framework.os.version=5.1
> org.osgi.framework.processor=x86
> org.osgi.framework.system.packages=javax.accessibility,javax .activation,javax.activity,javax.annotation,javax.annotation .processing,javax.crypto,javax.crypto.interfaces,javax.crypt o.spec,javax.imageio,javax.imageio.event,javax.imageio.metad ata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,jav ax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap ,javax.lang.model,javax.lang.model.element,javax.lang.model. type,javax.lang.model.util,javax.management,javax.management .loading,javax.management.modelmbean,javax.management.monito r,javax.management.openmbean,javax.management.relation,javax .management.remote,javax.management.remote.rmi,javax.managem ent.timer,javax.naming,javax.naming.directory,javax.naming.e vent,javax.naming.ldap,javax.naming.spi,javax.net,javax.net. ssl,javax.print,javax.print.attribute,javax.print.attribute. standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.r mi.ssl,javax.script,javax.security.auth,javax.security.auth. callback,javax.security.auth.
> kerberos,javax.security.auth.login,javax.security.auth.spi,j avax.security.auth.x500,javax.security.cert,javax.security.s asl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sample d,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.s ql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swin g.border,javax.swing.colorchooser,javax.swing.event,javax.sw ing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,java x.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.s ynth,javax.swing.table,javax.swing.text,javax.swing.text.htm l,javax.swing.text.html.parser,javax.swing.text.rtf,javax.sw ing.tree,javax.swing.undo,javax.tools,javax.transaction,java x.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.ann otation,javax.xml.bind.annotation.adapters,javax.xml.bind.at tachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xm l.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xm l.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.cr ypto.dsig.spec,javax.xml.datat
> ype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,jav ax.xml.stream,javax.xml.stream.events,javax.xml.stream.util, javax.xml.transform,javax.xml.transform.dom,javax.xml.transf orm.sax,javax.xml.transform.stax,javax.xml.transform.stream, javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax .xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,jav ax.xml.ws.spi,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,or g.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.Dyn AnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,o rg.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNa ming.NamingContextExtPackage,org.omg.CosNaming.NamingContext Package,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAn y.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org. omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPac kage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.P ortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer ,org.omg.PortableServer.Curren
> tPackage,org.omg.PortableServer.POAManagerPackage,org.omg.Po rtableServer.POAPackage,org.omg.PortableServer.portable,org. omg.PortableServer.ServantLocatorPackage,org.omg.SendingCont ext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap, org.w3c.dom.events,org.w3c.dom.ls,org.xml.sax,org.xml.sax.ex t,org.xml.sax.helpers
> org.osgi.framework.vendor=Eclipse
> org.osgi.framework.version=1.4.0
> org.osgi.supports.framework.extension=true
> org.osgi.supports.framework.fragment=true
> org.osgi.supports.framework.requirebundle=true
> os.arch=x86
> os.name=Windows XP
> os.version=5.1
> osgi.arch=x86
> osgi.bundles=org.eclipse.equinox.common@2:start,
> org.eclipse.update.configurator@3:start, org.eclipse.core.runtime@start
> osgi.bundlestore=D:\Progs\eclipse\configuration\org.eclipse. osgi\bundles
> osgi.compatibility.bootdelegation=true
> osgi.configuration.area=file:/D:/Progs/eclipse/configuration /
> osgi.framework=file:/d:/Progs/eclipse/plugins/org.eclipse.os gi_3.3.0.v20070530.jar
> osgi.framework.beginningstartlevel=1
> osgi.framework.shape=jar
> osgi.framework.version=3.3.0.v20070530
> osgi.install.area=file:/D:/Progs/eclipse/
> osgi.instance.area=file:/D:/.projects/ibm/eclipse-workspace/
> osgi.instance.area.default=file:/D:/.windows/workspace/
> osgi.logfile=D:\.projects\ibm\eclipse-workspace\.metadata\.l og
> osgi.manifest.cache=D:\Progs\eclipse\configuration\org.eclip se.osgi\manifests
> osgi.nl=cs_CZ
> osgi.os=win32
> osgi.splashLocation=d:\Progs\eclipse\plugins\org.eclipse.pla tform_3.3.0.v20070613\splash.bmp
> osgi.splashPath=platform:/base/plugins/org.eclipse.platform
> osgi.syspath=d:\Progs\eclipse\plugins
> osgi.ws=win32
> path.separator=;
> sun.arch.data.model=32
> sun.boot.class.path=C:\Program
> Files\Java\jre1.6.0_02\lib\resources.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\rt.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\sunrsasign.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\jsse.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\jce.jar;C:\Program
> Files\Java\jre1.6.0_02\lib\charsets.jar;C:\Program
> Files\Java\jre1.6.0_02\classes
> sun.boot.library.path=C:\Program Files\Java\jre1.6.0_02\bin
> sun.cpu.endian=little
> sun.cpu.isalist=
> sun.desktop=windows
> sun.io.unicode.encoding=UnicodeLittle
> sun.jnu.encoding=Cp1250
> sun.management.compiler=HotSpot Client Compiler
> sun.os.patch.level=Service Pack 2
> user.country=CZ
> user.dir=D:\Progs\eclipse
> user.home=D:\.windows
> user.language=cs
> user.name=User
> user.timezone=Europe/Prague
> user.variant=
>
> *** Features:
> org.eclipse.cvs (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS Client"
> org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
> Client SDK"
> org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
> org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code
> Generator"
> org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
> Generation"
> org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
> Generation UI"
> org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
> Generator UI"
> org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common"
> org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI"
> org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert
> Support"
> org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Programmers Guide"
> org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore"
> org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit Support"
> org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
> org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit"
> org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI"
> org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping "
> org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
> Framework (EMF) - org.eclipse.emf.mapping.ecore"
> org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
> Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor"
> org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI"
> org.eclipse.emf.ocl (1.1.0.v200706071450-10-7w311817312619) "Object
> Constraint Language (OCL) 2.0 Compatibility API"
> org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
> Technology Query Framework"
> org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
> Framework Technology Query OCL"
> org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Source"
> org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Transaction Core"
> org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Model Validation Core"
> org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Validation Support for OCL"
> org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Workbench Core"
> org.eclipse.gef (3.3.0.v20070620) "Graphical Editing Framework"
> org.eclipse.gmf (1.0.100.v20070601-1400-7d-ETeEYjiMWQX3az0fBWRjypkm7)
> "Graphical Modeling Framework"
> org.eclipse.jdt (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR) "Eclipse
> Java Development Tools"
> org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
> "Eclipse Java Development Tools SDK"
> org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET"
> org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Documentation"
> org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Examples"
> org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET SDK"
> org.eclipse.mylyn_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.bugzilla_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.context_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.ide_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.java_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.pde_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.sandbox.ui_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.mylyn.trac_feature (2.0.0.v20070910-1300) "Mylyn"
> org.eclipse.ocl (1.1.0.v200706071450-32-9oA55P5M8C8KCK) "Object Constraint
> Language (OCL) 2.0 Parser/Interpreter"
> org.eclipse.ocl.uml (1.1.0.v200706071450-10-7w311817182561) "OCL 2.0
> Binding for UML"
> org.eclipse.pde (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse Plug-in
> Development Environment"
> org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
> Plug-in Development Environment Developer Resources"
> org.eclipse.platform (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse
> Platform"
> org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
> "Eclipse Platform Plug-in Developer Resources"
> org.eclipse.rcp (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP"
> org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse
> RCP Plug-in Developer Resources"
> org.eclipse.sdk (3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO) "Eclipse
> Project SDK"
> org.eclipse.uml2 (2.1.0.v200706251652) "UML2"
> org.eclipse.wst (2.0.0.v200706041905-7C-18k0IWJZ93WDDJlQ60nUjTdJp) "Web
> Standard Tools (WST)"
> org.eclipse.wst.common_core.feature.source
> (2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools - Common
> Core Source"
> org.eclipse.wst.common_ui.feature.source
> (2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
> Common UI Source"
> org.eclipse.wst.sdk (2.0.0.v200706041905-7E-18aNKbx2jys2HTkz0_f_9fLWx)
> "Web Standard Tools (WST)"
> org.eclipse.wst.server_core.feature.source
> (2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server Core
> Source"
> org.eclipse.wst.server_ui.feature.source
> (2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
> Server UI Source"
> org.eclipse.wst.web_core.feature.source
> (2.0.0.v200706041905-42CI_kE77Y7TAMAVHH) "Web Standard Tools - Web Core
> Source"
> org.eclipse.wst.web_ui.feature.source
> (2.0.0.v200706041905-7A0EAeCiWfEJsCcbAj88SKfRX) "Web Standard Tools - Web
> UI Source"
> org.eclipse.wst.ws_core.feature.source
> (2.0.0.v200706210215-7E7KE_QEC3wSU4TpiAiQ0r) "Web Standard Tools - Web
> Service Core Source"
> org.eclipse.wst.ws_ui.feature.source
> (2.0.0.v200706041905-791ECBAufYO8_EaomWE4Fe3uXjR1) "Web Standard Tools -
> Web Service UI Source"
> org.eclipse.wst.xml_core.feature.source
> (2.0.0.v200706041905-787BE9zCYQCCz-CnUGLYQV) "Web Standard Tools - XML
> Core Source"
> org.eclipse.wst.xml_ui.feature.source
> (2.0.0.v200706182145-7A1ECBCnbckz0bZu9wHqAKN3mYpZ) "Web Standard Tools -
> XML UI Source"
> org.eclipse.xsd (2.3.0.v200706262000) "XML Schema Infoset Model (XSD)"
> org.eclipse.xsd.edit (2.3.0.v200706262000) "XML Schema Edit Framework"
> org.tigris.subversion.subclipse (1.2.3) "SVN Team Provider Core"
>
> *** Plug-in Registry:
> com.ibm.icu (3.6.1.v20070417) "International Components for Unicode for
> Java (ICU4J)" [Active]
> com.ibm.icu.source (3.6.1.v20070417) "International Components for Unicode
> for Java (ICU4J) source plug-in" [Resolved]
> com.ibm.icu36.data.update (3.6.1.v20070701_2007f) "ICU4J Data Update
> Fragment" [Resolved]
> com.jcraft.jsch (0.1.31) "JSch" [Resolved]
> eclipse.timeline (1.0.0.200709051757) "Timeline Plug-in" [Starting]
> eclipse.timeline.mylyn (1.0.0.200709051757) "Mylyn Tasks Event Source
> Plug-in" [Starting]
> eclipse.timeline.xml (1.0.0.200709051757) "Xml Event Source Plug-in"
> [Starting]
> javax.servlet (2.4.0.v200706111738) "Servlet API Bundle" [Resolved]
> javax.servlet.jsp (2.0.0.v200706191603) "Java Server Pages API Bundle"
> [Resolved]
> javax.servlet.jsp.source (2.0.0.v200706191603) "Java Server Pages API
> Source Bundle" [Resolved]
> javax.servlet.source (2.4.0.v200706111738) "Servlet API Source Bundle"
> [Resolved]
> javax.wsdl (1.4.0.v200706111329) "WSDL4J" [Resolved]
> javax.wsdl15 (1.5.1.v200705290614) "WSDL4J" [Resolved]
> javax.xml.rpc (1.1.0.v200706111329) "JAX-RPC" [Resolved]
> javax.xml.soap (1.2.0.v200706111329) "SAAJ" [Resolved]
> net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200706111738) "SourceForge LPG"
> [Resolved]
> net.sourceforge.lpg.lpgjavaruntime.source (1.1.0.v200706111738)
> "SourceForge LPG Source Bundle" [Resolved]
> org.apache.ant (1.7.0.v200706080842) "Apache Ant" [Resolved]
> org.apache.ant.source (1.7.0.v200706080842) "Apache Ant Source" [Resolved]
> org.apache.axis (1.4.0.v200706191647) "Apache Web Services" [Resolved]
> org.apache.batik.bridge (1.6.0.v200706111724) "Apache Batik
> Bridge/GVT/Scripting" [Resolved]
> org.apache.batik.css (1.6.0.v200706111724) "Apache Batik CSS" [Resolved]
> org.apache.batik.dom (1.6.0.v200706111724) "Apache Batik DOM" [Resolved]
> org.apache.batik.dom.svg (1.6.0.v200706111724) "Apache Batik SVG DOM"
> [Resolved]
> org.apache.batik.ext.awt (1.6.0.v200706111724) "Apache Batik AWT
> Utilities" [Resolved]
> org.apache.batik.parser (1.6.0.v200706111724) "Apache Batik Parser"
> [Resolved]
> org.apache.batik.svggen (1.6.0.v200706111724) "Apache Batik SVG
> Generation" [Resolved]
> org.apache.batik.transcoder (1.6.0.v200706111724) "Apache Batik
> Transcoder" [Resolved]
> org.apache.batik.util (1.6.0.v200706111724) "Apache Batik Utilities"
> [Resolved]
> org.apache.batik.util.gui (1.6.0.v200706111724) "Apache Batik GUI
> Utilities" [Resolved]
> org.apache.batik.xml (1.6.0.v200706111724) "Apache Batik XML" [Resolved]
> org.apache.commons.discovery (0.2.0.v200706111329) "Jakarta-Commons
> Discovery" [Resolved]
> org.apache.commons.el (1.0.0.v200706111724) "Apache Commons JSP 2.0
> Expression Language Interpreter" [Resolved]
> org.apache.commons.el.source (1.0.0.v200706111724) "Apache Commons JSP 2.0
> Expression Language Interpreter Source" [Resolved]
> org.apache.commons.logging (1.0.4.v200706111724) "Apache Commons Logging
> Plug-in" [Resolved]
> org.apache.commons.logging.source (1.0.4.v200706111724) "Apache Commons
> Logging Plug-in Source" [Resolved]
> org.apache.jasper (5.5.17.v200706111724) "Apache Jasper 2 Plug-in"
> [Resolved]
> org.apache.jasper.source (5.5.17.v200706111724) "Apache Jasper 2 Source
> Plug-in" [Resolved]
> org.apache.log4j (1.2.13.v200706111418) "Apache Jakarta log4j Plug-in"
> [Resolved]
> org.apache.lucene (1.9.1.v200706111724) "Apache Lucene" [Resolved]
> org.apache.lucene.analysis (1.9.1.v200706181610) "Apache Lucene Analysis"
> [Resolved]
> org.apache.lucene.analysis.source (1.9.1.v200706181610) "Apache Lucene
> Analysis Source" [Resolved]
> org.apache.lucene.source (1.9.1.v200706111724) "Apache Lucene Source"
> [Resolved]
> org.apache.wsil4j (1.0.0.v200706111329) "WSIL4J" [Resolved]
> org.apache.xerces (2.8.0.v200705301630) "Apache Xerces-J" [Resolved]
> org.apache.xml.resolver (1.1.0.v200705310020) "Apache XmlResolver"
> [Resolved]
> org.eclipse.ant.core (3.1.200.v20070522) "Ant Build Tool Core" [Starting]
> org.eclipse.ant.ui (3.2.100.v20070511) "Ant UI" [Active]
> org.eclipse.compare (3.3.0.I20070606) "Compare Support" [Active]
> org.eclipse.core.boot (3.1.100.v20060603) "Core Boot" [Starting]
> org.eclipse.core.commands (3.3.0.I20070605-0010) "Commands" [Resolved]
> org.eclipse.core.contenttype (3.2.100.v20070319) "Eclipse Content
> Mechanism" [Active]
> org.eclipse.core.databinding (1.0.0.I20070606-0010) "JFace Data Binding"
> [Resolved]
> org.eclipse.core.databinding.beans (1.0.0.I20070606-0010) "JFace Data
> Binding for JavaBeans" [Resolved]
> org.eclipse.core.expressions (3.3.0.v20070606-0010) "Expression Language"
> [Active]
> org.eclipse.core.filebuffers (3.3.0.v20070606-0010) "File Buffers"
> [Active]
> org.eclipse.core.filesystem (1.1.0.v20070606) "Core File Systems" [Active]
> org.eclipse.core.filesystem.win32.x86 (1.1.0.v20070510) "Core File System
> for Windows" [Resolved]
> org.eclipse.core.jobs (3.3.0.v20070423) "Eclipse Jobs Mechanism" [Active]
> org.eclipse.core.net (1.0.0.I20070531) "Internet Connection Management"
> [Active]
> org.eclipse.core.resources (3.3.0.v20070604) "Core Resource Management"
> [Active]
> org.eclipse.core.resources.compatibility (3.2.100.v20070502) "Core
> Resource Management Compatibility Fragment" [Resolved]
> org.eclipse.core.resources.win32 (3.3.0.v20070226) "Core Resource
> Management Win32 Fragment" [Resolved]
> org.eclipse.core.runtime (3.3.100.v20070530) "Core Runtime" [Active]
> org.eclipse.core.runtime.compatibility (3.1.200.v20070502) "Core Runtime
> Plug-in Compatibility" [Active]
> org.eclipse.core.runtime.compatibility.auth (3.2.100.v20070502)
> "Authorization Compatibility Plug-in" [Active]
> org.eclipse.core.runtime.compatibility.registry (3.2.100.v20070316)
> "Eclipse Registry Compatibility Fragment" [Resolved]
> org.eclipse.core.variables (3.2.0.v20070426) "Core Variables" [Starting]
> org.eclipse.cvs (1.0.0.v20070606) "Eclipse CVS Client" [Starting]
> org.eclipse.cvs.source (1.0.0.v20070606-7C79_79EI99g_Y9e) "Eclipse CVS
> Client SDK" [Resolved]
> org.eclipse.debug.core (3.3.0.v20070607-1800) "Debug Core" [Active]
> org.eclipse.debug.ui (3.3.0.v20070607-1800) "Debug UI" [Active]
> org.eclipse.draw2d (3.2.100.v20070529) "Graphical Editing Framework
> Draw2d" [Starting]
> org.eclipse.emf (2.3.0.v200706262000) "Eclipse Modeling Framework (EMF)"
> [Starting]
> org.eclipse.emf.ant (2.3.0.v200706262000) "EMF Ant Tasks" [Starting]
> org.eclipse.emf.codegen (2.3.0.v200706262000) "EMF Template Code
> Generator" [Starting]
> org.eclipse.emf.codegen.ecore (2.3.0.v200706262000) "EMF Ecore Code
> Generation" [Starting]
> org.eclipse.emf.codegen.ecore.ui (2.3.0.v200706262000) "EMF Ecore Code
> Generation UI" [Starting]
> org.eclipse.emf.codegen.ui (2.3.0.v200706262000) "EMF Template Code
> Generator UI" [Starting]
> org.eclipse.emf.common (2.3.0.v200706262000) "EMF Common" [Starting]
> org.eclipse.emf.common.ui (2.3.0.v200706262000) "EMF Common UI" [Starting]
> org.eclipse.emf.converter (2.3.0.v200706262000) "EMF Model Convert
> Support" [Starting]
> org.eclipse.emf.doc (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Programmers Guide" [Starting]
> org.eclipse.emf.ecore (2.3.0.v200706262000) "EMF Ecore" [Starting]
> org.eclipse.emf.ecore.edit (2.3.0.v200706262000) "EMF Ecore Edit Support"
> [Starting]
> org.eclipse.emf.ecore.editor (2.3.0.v200706262000) "Sample Ecore Editor"
> [Starting]
> org.eclipse.emf.ecore.change (2.3.0.v200706262000) "EMF Ecore Change
> Model" [Starting]
> org.eclipse.emf.ecore.change.edit (2.3.0.v200706262000) "EMF Ecore Change
> Edit Support" [Starting]
> org.eclipse.emf.ecore.xmi (2.3.0.v200706262000) "EMF XMI" [Starting]
> org.eclipse.emf.edit (2.3.0.v200706262000) "EMF Edit" [Starting]
> org.eclipse.emf.edit.ui (2.3.0.v200706262000) "EMF Edit UI" [Starting]
> org.eclipse.emf.exporter (2.3.0.v200706262000) "EMF Model Export Support"
> [Starting]
> org.eclipse.emf.cheatsheets (2.3.0.v200706262000) "EMF Cheat Sheets"
> [Starting]
> org.eclipse.emf.importer (2.3.0.v200706262000) "EMF Model Import Support"
> [Starting]
> org.eclipse.emf.importer.ecore (2.3.0.v200706262000) "EMF Ecore Importer"
> [Starting]
> org.eclipse.emf.importer.java (2.3.0.v200706262000) "EMF Annotated Java
> Importer" [Starting]
> org.eclipse.emf.importer.rose (2.3.0.v200706262000) "EMF Rose Importer"
> [Starting]
> org.eclipse.emf.mapping (2.3.0.v200706262000) "EMF Mapping" [Starting]
> org.eclipse.emf.mapping.ecore (2.3.0.v200706262000) "Eclipse Modeling
> Framework (EMF) - org.eclipse.emf.mapping.ecore" [Starting]
> org.eclipse.emf.mapping.ecore.editor (2.3.0.v200706262000) "Eclipse
> Modeling Framework (EMF) - org.eclipse.emf.mapping.ecore.editor"
> [Starting]
> org.eclipse.emf.mapping.ecore2ecore (2.3.0.v200706262000) "Ecore to Ecore
> Mapping" [Starting]
> org.eclipse.emf.mapping.ecore2ecore.editor (2.3.0.v200706262000) "Ecore to
> Ecore Mapping Editor" [Starting]
> org.eclipse.emf.mapping.ecore2xml (2.3.0.v200706262000) "Ecore to XML
> Mapping" [Starting]
> org.eclipse.emf.mapping.ecore2xml.ui (2.3.0.v200706262000) "Ecore to XML
> Mapping UI" [Starting]
> org.eclipse.emf.mapping.ui (2.3.0.v200706262000) "EMF Mapping UI"
> [Starting]
> org.eclipse.emf.ocl (1.1.0.v200706201508) "Object Constraint Language
> (OCL) 2.0 Compatibility API" [Starting]
> org.eclipse.emf.query (1.0.1.v200703301543) "Eclipse Modeling Framework
> Technology Query Framework" [Starting]
> org.eclipse.emf.query.ocl (1.1.0.v200703301543) "Eclipse Modeling
> Framework Technology Query OCL" [Starting]
> org.eclipse.emf.source (2.3.0.v200706262000) "Eclipse Modeling Framework
> (EMF) Source" [Resolved]
> org.eclipse.emf.transaction (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Transaction Core" [Starting]
> org.eclipse.emf.transaction.ui (1.0.1.v200703301538) "Eclipse Modeling
> Framework Technology Transaction UI" [Starting]
> org.eclipse.emf.validation (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Model Validation Core" [Starting]
> org.eclipse.emf.validation.ocl (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Validation Support for OCL" [Resolved]
> org.eclipse.emf.validation.ui (1.1.0.v200703301524) "Eclipse Modeling
> Framework Technology Validation UI" [Starting]
> org.eclipse.emf.validation.ui.ide (1.0.1.v200703301524) "Eclipse Modeling
> Framework Technology Validation UI IDE" [Starting]
> org.eclipse.emf.workspace (1.1.0.v200703301538) "Eclipse Modeling
> Framework Technology Workbench Core" [Starting]
> org.eclipse.emf.workspace.ui (1.0.100.v200703301538) "Eclipse Modeling
> Framework Technology Workbench UI" [Starting]
> org.eclipse.equinox.app (1.0.0.v20070606) "Equinox Application Container"
> [Active]
> org.eclipse.equinox.common (3.3.0.v20070426) "Common Eclipse Runtime"
> [Active]
> org.eclipse.equinox.device (1.0.0.v20070226) "Device Access Service"
> [Resolved]
> org.eclipse.equinox.event (1.0.100.v20070516) "Event Admin" [Resolved]
> org.eclipse.equinox.http (1.0.100.v20070423) "HTTP Service" [Resolved]
> org.eclipse.equinox.http.jetty (1.0.0.v20070607) "Jetty Http Service"
> [Starting]
> org.eclipse.equinox.http.registry (1.0.0.v20070608) "Http Service Registry
> Extensions" [Resolved]
> org.eclipse.equinox.http.servlet (1.0.0.v20070606) "Http Services Servlet"
> [Starting]
> org.eclipse.equinox.http.servletbridge (1.0.0.v20070523) "Servletbridge
> Http Service" [Resolved]
> org.eclipse.equinox.jsp.jasper (1.0.0.v20070607) "Jasper Jsp Support
> Bundle" [Starting]
> org.eclipse.equinox.jsp.jasper.registry (1.0.0.v20070607) "Jasper Jsp
> Registry Support Plug-in" [Starting]
> org.eclipse.equinox.launcher (1.0.0.v20070606) "Equinox Launcher"
> [Resolved]
> org.eclipse.equinox.launcher.win32.win32.x86 (1.0.0.v20070523) "Equinox
> Launcher Win32 X86 Fragment" [Resolved]
> org.eclipse.equinox.log (1.0.100.v20070226) "Log Service" [Resolved]
> org.eclipse.equinox.metatype (1.0.0.v20070226) "Meta Type" [Resolved]
> org.eclipse.equinox.preferences (3.2.100.v20070522) "Eclipse Preferences
> Mechanism" [Active]
> org.eclipse.equinox.registry (3.3.0.v20070522) "Extension Registry
> Support" [Active]
> org.eclipse.equinox.servletbridge (1.0.0.v20070523) "bundleName"
> [Resolved]
> org.eclipse.equinox.useradmin (1.0.0.v20070226) "User Admin Service"
> [Resolved]
> org.eclipse.gef (3.2.100.v20070620) "Graphical Editing Framework"
> [Starting]
> org.eclipse.gmf (1.0.0.v20070601-1400) "Graphical Modeling Framework"
> [Starting]
> org.eclipse.gmf.bridge (1.1.0.v20070621-0000) "GMF Models Bridging
> Plug-in" [Starting]
> org.eclipse.gmf.bridge.ui (1.1.0.v20070621-0000) "GMF Tooling UI"
> [Starting]
> org.eclipse.gmf.bridge.ui.dashboard (2.0.0.v20070621-0000) "GMF Dashboard"
> [Starting]
> org.eclipse.gmf.codegen (2.0.0.v20070621-0000) "GMF GenModel and Code
> Generation" [Starting]
> org.eclipse.gmf.codegen.edit (2.0.0.v20070614-1400) "GMF GenModel Edit
> Support" [Starting]
> org.eclipse.gmf.codegen.ui (1.1.0.v20070621-0000) "GMF Code Generation UI"
> [Starting]
> org.eclipse.gmf.common (1.1.0.v20070621-0000) "GMF Tooling Commons
> Plug-in" [Starting]
> org.eclipse.gmf.doc.ui (1.1.0.v20070601-1400) "GMF Documentation
> Cheatsheets" [Starting]
> org.eclipse.gmf.ecore.editor (2.0.0.v20070621-0000) "ECore Sample Diagram
> Plugin" [Starting]
> org.eclipse.gmf.graphdef (2.0.0.v20070621-0000) "GMF Graphical Definition"
> [Resolved]
> org.eclipse.gmf.graphdef.codegen (2.0.0.v20070621-0000) "Graphical
> Definition Code Generator" [Starting]
> org.eclipse.gmf.graphdef.codegen.ui (1.0.100.v20070621-0000) "Graphical
> Definition Code Generator UI Support" [Resolved]
> org.eclipse.gmf.graphdef.edit (2.0.0.v20070601-1400) "GMFGraph Edit
> Support" [Starting]
> org.eclipse.gmf.map (2.0.0.v20070621-0000) "GMF Mapping Model" [Starting]
> org.eclipse.gmf.map.edit (2.0.0.v20070621-0000) "GMF Mapping Edit Support"
> [Starting]
> org.eclipse.gmf.runtime.common.core (1.0.100.v20070601-1400) "GMF Common
> Core" [Starting]
> org.eclipse.gmf.runtime.common.ui (1.0.100.v20070601-1400) "GMF Common UI"
> [Starting]
> org.eclipse.gmf.runtime.common.ui.action (1.0.100.v20070601-1400) "GMF
> Common UI Action" [Starting]
> org.eclipse.gmf.runtime.common.ui.action.ide (1.0.1.v20070601-1400) "GMF
> Common UI Action IDE" [Starting]
> org.eclipse.gmf.runtime.common.ui.printing (1.0.1.v20070601-1400) "GMF
> Printing" [Starting]
> org.eclipse.gmf.runtime.common.ui.printing.win32 (1.0.2.v20070601-1400)
> "GMF Printing for Win32" [Resolved]
> org.eclipse.gmf.runtime.common.ui.services (1.0.100.v20070601-1400) "GMF
> Common UI Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.action (1.0.100.v20070601-1400)
> "GMF Common UI Action Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.dnd (1.0.1.v20070601-1400) "GMF
> Common UI DND Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.dnd.ide (1.0.1.v20070601-1400)
> "GMF Common UI DND IDE Services" [Starting]
> org.eclipse.gmf.runtime.common.ui.services.properties
> (1.0.1.v20070601-1400) "GMF Common UI Properties Service Framework"
> [Starting]
> org.eclipse.gmf.runtime.diagram.core (1.0.100.v20070601-1400) "GMF Diagram
> Core" [Starting]
> org.eclipse.gmf.runtime.diagram.ui (1.0.100.v20070621-0000) "GMF Diagram
> UI" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.actions (1.0.100.v20070621-0000) "GMF
> Diagram Actions" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.dnd (1.0.1.v20070601-1400) "GMF Diagram
> Browse" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.geoshapes (1.0.1.v20070601-1400) "GMF
> Geometric Shapes" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.printing (1.0.100.v20070621-0000) "GMF
> Diagram Printing" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.printing.render (1.0.1.v20070601-1400)
> "GMF Diagram UI Printing Render Plug-In" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.properties (1.0.100.v20070608-1300)
> "GMF Diagram UI Properties" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.providers (1.0.100.v20070621-0000) "GMF
> Diagram Providers" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.providers.ide (1.0.1.v20070601-1400)
> "GMF Diagram Providers IDE" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.render (1.0.100.v20070621-0000) "GMF
> Diagram UI Render Plug-In" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.resources.editor (1.0.3.v20070601-1400)
> "GMF Diagram UI Resources Editor Plug-In" [Starting]
> org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide
> (1.0.3.v20070601-1400) "GMF IDE Editor" [Starting]
> org.eclipse.gmf.runtime.draw2d.ui (1.0.100.v20070621-0000) "GMF Draw2d
> Additions" [Starting]
> org.eclipse.gmf.runtime.draw2d.ui.render (1.0.100.v20070614-1400) "GMF
> Draw2d Image Rendering Additions" [Starting]
> org.eclipse.gmf.runtime.draw2d.ui.render.awt (1.0.100.v20070614-1400) "GMF
> Draw2d Image AWT based Rendering Additions" [Starting]
> org.eclipse.gmf.runtime.emf.clipboard.core (1.0.100.v20070621-0000) "GMF
> EMF Clipboard Support" [Starting]
> org.eclipse.gmf.runtime.emf.commands.core (1.0.3.v20070601-1400) "GMF
> Commands" [Starting]
> org.eclipse.gmf.runtime.emf.core (1.0.100.v20070601-1400) "GMF Modeling
> Service Layer" [Starting]
> org.eclipse.gmf.runtime.emf.type.core (1.0.100.v20070601-1400) "GMF EMF
> Type Core" [Starting]
> org.eclipse.gmf.runtime.emf.type.ui (1.0.1.v20070601-1400) "GMF EMF Type
> UI" [Starting]
> org.eclipse.gmf.runtime.emf.ui (1.0.100.v20070621-0000) "GMF MSL UI"
> [Starting]
> org.eclipse.gmf.runtime.emf.ui.properties (1.0.2.v20070601-1400) "GMF EMF
> UI Properties Providers" [Starting]
> org.eclipse.gmf.runtime.gef.ui (1.0.1.v20070601-1400) "GMF GEF Additions"
> [Starting]
> org.eclipse.gmf.runtime.notation (1.0.100.v20070621-0000) "GMF Notation
> Model Support" [Starting]
> org.eclipse.gmf.runtime.notation.edit (1.0.1.v20070621-0000) "GMF Notation
> Edit Support" [Starting]
> org.eclipse.gmf.runtime.notation.providers (1.0.1.v20070601-1400) "GMF
> Notation Metamodel" [Starting]
> org.eclipse.gmf.sdk (1.0.0.v20070601-1400) "Graphical Modeling Framework
> SDK" [Starting]
> org.eclipse.gmf.tooldef (2.0.0.v20070621-0000) "GMF Tooling Model"
> [Starting]
> org.eclipse.gmf.tooldef.edit (2.0.0.v20070601-1400) "GMF Tooling Edit
> Support" [Starting]
> org.eclipse.gmf.validate (1.1.0.v20070621-0000) "GMF Validation"
> [Starting]
> org.eclipse.gmf.xpand (1.0.0.v20070608-1300) "GMF Xpand Template Engine"
> [Starting]
> org.eclipse.help (3.3.0.v20070524) "Help System Core" [Active]
> org.eclipse.help.appserver (3.1.200.v20070510) "Help Application Server"
> [Starting]
> org.eclipse.help.base (3.3.0.v20070606) "Help System Base" [Starting]
> org.eclipse.help.ui (3.3.0.v20070530) "Help System UI" [Starting]
> org.eclipse.help.webapp (3.3.0.v20070607) "Help System Webapp" [Starting]
> org.eclipse.jdt (3.3.0.v20070607-1300) "Eclipse Java Development Tools"
> [Resolved]
> org.eclipse.jdt.apt.core (3.3.0.v20070607-1200) "Java Annotation
> Processing Core" [Active]
> org.eclipse.jdt.apt.pluggable.core (1.0.0.v20070529-2100) "Java Compiler
> Apt IDE" [Starting]
> org.eclipse.jdt.apt.ui (3.3.0.v20070430-1135) "Java Annotation Processing
> UI" [Starting]
> org.eclipse.jdt.compiler.apt (1.0.0.v20070510-2000) "Java Compiler Apt"
> [Resolved]
> org.eclipse.jdt.compiler.tool (1.0.0.v_771) "Java Compiler Tool Support"
> [Resolved]
> org.eclipse.jdt.core (3.3.0.v_771) "Java Development Tools Core" [Active]
> org.eclipse.jdt.core.manipulation (1.1.0.v20070606-0010) "Java Code
> Manipulation Functionality" [Active]
> org.eclipse.jdt.debug (3.3.0.v20070530a) "JDI Debug Model" [Active]
> org.eclipse.jdt.debug.ui (3.2.100.v20070531-1800) "JDI Debug UI" [Active]
> org.eclipse.jdt.doc.isv (3.3.0.v20070613) "Eclipse JDT Plug-in Developer
> Guide" [Starting]
> org.eclipse.jdt.doc.user (3.3.0.v20070608-1300) "Eclipse Java Development
> User Guide" [Starting]
> org.eclipse.jdt.junit (3.3.0.v20070606-0010) "Java Development Tools JUnit
> support" [Starting]
> org.eclipse.jdt.junit.runtime (3.3.0.v20070606-0010) "Java Development
> Tools JUnit runtime support" [Resolved]
> org.eclipse.jdt.junit4.runtime (1.0.100.v20070606-0010) "Java Development
> Tools JUnit4 runtime support" [Resolved]
> org.eclipse.jdt.launching (3.3.0.v20070510) "Java Development Tools
> Launching Support" [Active]
> org.eclipse.jdt.source (3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR)
> "Eclipse Java Development Tools SDK" [Resolved]
> org.eclipse.jdt.ui (3.3.0.v20070607-0010) "Java Development Tools UI"
> [Active]
> org.eclipse.jem.util (2.0.0.v200705302225) "Java EMF Model Utilities"
> [Starting]
> org.eclipse.jet (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET" [Starting]
> org.eclipse.jet.core (1.0.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Core" [Starting]
> org.eclipse.jet.doc (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Documentation" [Starting]
> org.eclipse.jet.examples (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET Examples" [Starting]
> org.eclipse.jet.source (0.8.0.v200704041505) "Eclipse Modeling Framework
> Technologies - JET SDK" [Resolved]
> org.eclipse.jet.ui (0.8.0.v200704041505) "JET Transformations UI Plug-in"
> [Active]
> org.eclipse.jface (3.3.0.I20070606-0010) "JFace" [Active]
> org.eclipse.jface.databinding (1.1.0.I20070606-0010) "JFace Data Binding
> for SWT and JFace" [Resolved]
> org.eclipse.jface.text (3.3.0.v20070606-0010) "JFace Text" [Resolved]
> org.eclipse.jsch.core (1.0.0.I20070426) "JSch Core" [Active]
> org.eclipse.jsch.ui (1.0.0.I20070525) "JSch UI" [Starting]
> org.eclipse.ltk.core.refactoring (3.3.0.v20070606-0010) "Refactoring Core"
> [Active]
> org.eclipse.ltk.ui.refactoring (3.3.0.v20070606-0010) "Refactoring UI"
> [Active]
> org.eclipse.mylyn (2.0.0.v20070910-1300) "Mylyn" [Starting]
> org.eclipse.mylyn.bugzilla.core (2.0.0.v20070910-1300) "Mylyn Bugzilla
> Connector Core" [Active]
> org.eclipse.mylyn.bugzilla.ide (2.0.0.v20070910-1300) "Mylyn Bugzilla
> Connector IDE" [Active]
> org.eclipse.mylyn.bugzilla.ui (2.0.0.v20070910-1300) "Mylyn Bugzilla
> Connector UI" [Active]
> org.eclipse.mylyn.compatibility (2.0.0.v20070910-1300) "Java 5
> Compatibility Checker" [Active]
> org.eclipse.mylyn.context.core (2.0.0.v20070910-1300) "Mylyn Context Core"
> [Active]
> org.eclipse.mylyn.context.ui (2.0.0.v20070910-1300) "Mylyn Context UI"
> [Active]
> org.eclipse.mylyn.help.ui (2.0.0.v20070910-1300) "Mylyn Help" [Starting]
> org.eclipse.mylyn.ide.ant (2.0.0.v20070910-1300) "Mylyn Ant UI Plug-in"
> [Active]
> org.eclipse.mylyn.ide.ui (2.0.0.v20070910-1300) "Mylyn IDE UI" [Active]
> org.eclipse.mylyn.java.ui (2.0.0.v20070910-1300) "Mylyn Java" [Active]
> org.eclipse.mylyn.monitor.core (2.0.0.v20070910-1300) "Mylyn Monitor Core"
> [Resolved]
> org.eclipse.mylyn.monitor.ui (2.0.0.v20070910-1300) "Mylyn Monitor UI"
> [Active]
> org.eclipse.mylyn.pde.ui (2.0.0.v20070910-1300) "Mylyn PDE UI Plug-in"
> [Active]
> org.eclipse.mylyn.resources.ui (2.0.0.v20070910-1300) "Mylyn Resources UI"
> [Active]
> org.eclipse.mylyn.sandbox.ui (2.0.0.v20070910-1300) "Mylyn Sandbox
> Experimental UI" [Active]
> org.eclipse.mylyn.tasks.core (2.0.0.v20070910-1300) "Mylyn Tasks Core"
> [Active]
> org.eclipse.mylyn.tasks.ui (2.0.0.v20070910-1300) "Mylyn Tasks UI"
> [Active]
> org.eclipse.mylyn.team.cvs (2.0.0.v20070910-1300) "Mylyn Team CVS Plug-in"
> [Resolved]
> org.eclipse.mylyn.team.ui (2.0.0.v20070910-1300) "Mylyn Team UI" [Active]
> org.eclipse.mylyn.trac.core (2.0.0.v20070910-1300) "Mylyn Trac Connector
> Core" [Active]
> org.eclipse.mylyn.trac.ui (2.0.0.v20070910-1300) "Mylyn Trac Connector UI"
> [Active]
> org.eclipse.mylyn.web.core (2.0.0.v20070910-1300) "Mylyn Web Core Plug-in"
> [Active]
> org.eclipse.mylyn.web.ui (2.0.0.v20070910-1300) "Mylyn Web UI" [Starting]
> org.eclipse.ocl (1.1.0.v200706201508) "Object Constraint Language (OCL)
> 2.0 Parser/Interpreter" [Starting]
> org.eclipse.ocl.ecore (1.1.0.v200706071450) "OCL 2.0 Binding for Ecore"
> [Starting]
> org.eclipse.ocl.uml (1.1.0.v200706071450) "OCL 2.0 Binding for UML"
> [Starting]
> org.eclipse.osgi (3.3.0.v20070530) "OSGi System Bundle" [Active]
> org.eclipse.osgi.services (3.1.200.v20070605) "OSGi Release 4.0.1
> Services" [Resolved]
> org.eclipse.osgi.util (3.1.200.v20070605) "OSGi Release 4.0.1 Utility
> Classes" [Resolved]
> org.eclipse.pde (3.3.0.v20070608-1300) "Eclipse Plug-in Development
> Environment" [Active]
> org.eclipse.pde.build (3.3.0.v20070612) "Plug-in Development Environment
> Build Support" [Starting]
> org.eclipse.pde.core (3.3.0.v20070608-1300) "Plug-in Development Core"
> [Active]
> org.eclipse.pde.doc.user (3.3.0.v20070614-0800) "Eclipse Plug-in
> Development User Guide" [Resolved]
> org.eclipse.pde.junit.runtime (3.3.0.v20070608-1300) "PDE JUnit Plug-in
> Test" [Resolved]
> org.eclipse.pde.runtime (3.3.0.v20070608-1300) "Plug-in Development
> Environment Runtime" [Starting]
> org.eclipse.pde.source (3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC) "Eclipse
> Plug-in Development Environment Developer Resources" [Resolved]
> org.eclipse.pde.ui (3.3.0.v20070608-1300) "Plug-in Development UI"
> [Active]
> org.eclipse.pde.ui.templates (3.3.0.v20070608-1300) "PDE Templates"
> [Starting]
> org.eclipse.platform (3.3.0.v20070613) "Eclipse Platform" [Starting]
> org.eclipse.platform.doc.isv (3.3.0.v20070621) "Eclipse Platform Plug-in
> Developer Guide" [Starting]
> org.eclipse.platform.doc.user (3.3.0.I20070615-1300) "Eclipse Workbench
> User Guide" [Starting]
> org.eclipse.platform.source (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G)
> "Eclipse Platform Plug-in Developer Resources" [Resolved]
> org.eclipse.platform.source.win32.win32.x86
> (3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G) "Eclipse Platform Plug-in Developer
> Resources" [Resolved]
> org.eclipse.rcp (3.2.0.v20070612) "Eclipse RCP" [Starting]
> org.eclipse.rcp.source (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse
> RCP Plug-in Developer Resources" [Resolved]
> org.eclipse.rcp.source.win32.win32.x86
> (3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG) "Eclipse RCP Plug-in Developer
> Resources" [Resolved]
> org.eclipse.sdk (3.3.0.v20070613) "Eclipse Project SDK" [Starting]
> org.eclipse.search (3.3.0.v20070606-0010) "Search Support" [Active]
> org.eclipse.swt (3.3.0.v3346) "Standard Widget Toolkit" [Resolved]
> org.eclipse.swt.win32.win32.x86 (3.3.0.v3346) "Standard Widget Toolkit for
> Windows" [Resolved]
> org.eclipse.team.core (3.3.0.I20070607) "Team Support Core" [Active]
> org.eclipse.team.cvs.core (3.3.0.I20070607) "CVS Team Provider Core"
> [Active]
> org.eclipse.team.cvs.ssh (3.2.100.I20061208) "CVS SSH Core" [Starting]
> org.eclipse.team.cvs.ssh2 (3.2.100.I20070604) "CVS SSH2" [Starting]
> org.eclipse.team.cvs.ui (3.3.0.I20070607) "CVS Team Provider UI" [Active]
> org.eclipse.team.ui (3.3.0.I20070607) "Team Support UI" [Active]
> org.eclipse.text (3.3.0.v20070606-0010) "Text" [Resolved]
> org.eclipse.tomcat (4.1.230.v20070531) "Tomcat Wrapper" [Starting]
> org.eclipse.ui (3.3.0.I20070614-0800) "Eclipse UI" [Active]
> org.eclipse.ui.browser (3.2.100.v20070524A) "Browser Support" [Starting]
> org.eclipse.ui.console (3.2.0.v20070530) "Console" [Active]
> org.eclipse.ui.editors (3.3.0.v20070606-0010) "Default Text Editor"
> [Active]
> org.eclipse.ui.externaltools (3.1.200.v20070416) "External Tools" [Active]
> org.eclipse.ui.forms (3.3.0.v20070511) "Eclipse Forms" [Active]
> org.eclipse.ui.cheatsheets (3.3.0.v20070507) "Cheat Sheets" [Starting]
> org.eclipse.ui.ide (3.3.0.I20070620) "Eclipse IDE UI" [Active]
> org.eclipse.ui.ide.application (1.0.0.I20070530-0100) "Eclipse IDE UI
> Application" [Resolved]
> org.eclipse.ui.intro (3.2.100.v20070530) "Welcome Framework" [Starting]
> org.eclipse.ui.intro.universal (3.2.100.v20070530A) "Universal Welcome"
> [Starting]
> org.eclipse.ui.navigator (3.3.0.I20070605-0010) "Common Navigator View"
> [Starting]
> org.eclipse.ui.navigator.resources (3.3.0.I20070605-0010) "Navigator
> Workbench Components" [Starting]
> org.eclipse.ui.net (1.0.0.I20070516) "Internet Connection Management UI"
> [Active]
> org.eclipse.ui.presentations.r21 (3.2.100.I20070605-0010) "R21
> Presentation Plug-in" [Starting]
> org.eclipse.ui.views (3.2.100.I20070319-0010) "Views" [Active]
> org.eclipse.ui.views.properties.tabbed (3.3.0.I20070605-0010) "Tabbed
> Properties View" [Starting]
> org.eclipse.ui.win32 (3.2.100.I20070319-0010) "Eclipse UI Win32
> Enhancements" [Resolved]
> org.eclipse.ui.workbench (3.3.0.I20070608-1100) "Workbench" [Active]
> org.eclipse.ui.workbench.compatibility (3.2.0.I20070319-0010) "Workbench
> Compatibility" [Resolved]
> org.eclipse.ui.workbench.texteditor (3.3.0.v20070606-0010) "Text Editor
> Framework" [Active]
> org.eclipse.uml2 (2.1.0.v200706251652) "UML2" [Resolved]
> org.eclipse.uml2.codegen.ecore (1.3.0.v200706251652) "UML2 Ecore Code
> Generation" [Starting]
> org.eclipse.uml2.codegen.ecore.ui (1.3.0.v200706251652) "UML2 Ecore Code
> Generation UI" [Starting]
> org.eclipse.uml2.common (1.3.0.v200706251652) "UML2 Common" [Starting]
> org.eclipse.uml2.common.edit (1.3.0.v200706251652) "UML2 Common Edit
> Support" [Starting]
> org.eclipse.uml2.uml (2.1.0.v200706251652) "UML2 UML Model" [Starting]
> org.eclipse.uml2.uml.ecore.exporter (2.1.0.v200706251652) "UML2 UML
> Exporter for EMF" [Starting]
> org.eclipse.uml2.uml.ecore.importer (2.1.0.v200706251652) "UML2 UML
> Importer for EMF" [Starting]
> org.eclipse.uml2.uml.edit (2.1.0.v200706251652) "UML2 UML Edit Support"
> [Starting]
> org.eclipse.uml2.uml.editor (2.1.0.v200706251652) "UML2 UML Editor"
> [Starting]
> org.eclipse.uml2.uml.resources (2.1.0.v200706251652) "UML2 UML Resources"
> [Resolved]
> org.eclipse.update.configurator (3.2.100.v20070615) "Install/Update
> Configurator" [Active]
> org.eclipse.update.core (3.2.100.v20070615) "Install/Update Core" [Active]
> org.eclipse.update.core.win32 (3.2.100.v20070615) "Install/Update Core for
> Windows" [Resolved]
> org.eclipse.update.scheduler (3.2.100.v20070615) "Automatic Updates
> Scheduler" [Active]
> org.eclipse.update.ui (3.2.100.v20070615) "Install/Update UI" [Starting]
> org.eclipse.wst (1.0.2.v200706120315) "Web Standard Tools (WST)"
> [Resolved]
> org.eclipse.wst.command.env (1.0.203.v200705302225) "Environment Command
> Framework (headless)" [Starting]
> org.eclipse.wst.command.env.core (1.0.202.v200705302225) "Environment
> Command Framework (core)" [Resolved]
> org.eclipse.wst.command.env.doc.user (1.5.1.v200706120315) "Web services
> Axis Ant task documentation" [Starting]
> org.eclipse.wst.command.env.infopop (1.0.3.v200706110217) "Web services
> UI" [Starting]
> org.eclipse.wst.command.env.ui (1.0.202.v200705302225) "Environment
> Command Framework (GUI)" [Starting]
> org.eclipse.wst.common_core.feature.source
> (2.0.0.v200706041905-7C78EK9E_EkMNfNOd2d8qq) "Web Standard Tools - Common
> Core Source" [Resolved]
> org.eclipse.wst.common_ui.feature.source
> (2.0.0.v200706041905-7C5EGzE9RvTVniSrwnf4TgOPe3e9) "Web Standard Tools -
> Common UI Source" [Resolved]
> org.eclipse.wst.common.core (1.1.101.v200706120315) "WST Common Core
> Plug-in" [Starting]
> org.eclipse.wst.common.emf (1.1.103.v200706071630) "EMF Utilities"
> [Starting]
> org.eclipse.wst.common.emfworkbench.integration (1.1.103.v200706071630)
> "EMF Workbench Edit Plug-in" [Starting]
> org.eclipse.wst.common.environment (1.0.200.v200705302225) "Enviornment
> Plug-in" [Starting]
> org.eclipse.wst.common.frameworks (1.1.102.v200706071630) "Common
> Frameworks" [Starting]
> org.eclipse.wst.common.frameworks.ui (1.1.100.v200706071630) "WTP UI
> Plug-in" [Starting]
> org.eclipse.wst.common.infopop (1.0.2.v200706110217) "Common WST infopops"
> [Starting]
> org.eclipse.wst.common.modulecore (1.1.102.v200706071630) "Modulecore
> Plug-in" [Starting]
> org.eclipse.wst.common.project.facet.core (1.2.0.v200706071740) "Project
> Facet Core" [Starting]
> org.eclipse.wst.common.project.facet.ui (1.2.0.v200706071742) "Project
> Facet UI" [Starting]
> org.eclipse.wst.common.snippets (1.1.101.v200705302225) "Snippets View"
> [Starting]
> org.eclipse.wst.common.ui (1.1.200.v200705302225) "Eclipse Base UI
> extensions" [Starting]
> org.eclipse.wst.common.ui.properties (1.0.102.v200706120315) "Common
> Properties UI" [Starting]
> org.eclipse.wst.common.uriresolver (1.1.201.v200705302225) "Common URI
> Resolver Framework" [Starting]
> org.eclipse.wst.css.core (1.1.101.v200705302225) "Structured Source CSS
> Model" [Starting]
> org.eclipse.wst.css.ui (1.0.201.v200705302225) "SSE CSS Source Editor"
> [Starting]
> org.eclipse.wst.doc.isv (1.0.304.v200706112015) "WST ISV Documentation"
> [Starting]
> org.eclipse.wst.doc.user (1.1.0.v200705302225) "Master User Doc TOC"
> [Starting]
> org.eclipse.wst.dtd.core (1.1.101.v200705302225) "Structured Source DTD
> Core" [Starting]
> org.eclipse.wst.dtd.ui (1.0.201.v200705302225) "SSE DTD Source Editor"
> [Starting]
> org.eclipse.wst.dtd.ui.infopop (1.0.2.v200706110217) "DTD Editor infopops"
> [Resolved]
> org.eclipse.wst.dtdeditor.doc.user (1.0.300.v200705302225) "DTD Editor
> documentation" [Resolved]
> org.eclipse.wst.html.core (1.1.101.v200706120811) "Structured Source HTML
> Model" [Starting]
> org.eclipse.wst.html.ui (1.0.201.v200705302225) "HTML UI Source Editor"
> [Starting]
> org.eclipse.wst.html.ui.infopop (1.0.2.v200706110217) "HTML editor
> infopops" [Resolved]
> org.eclipse.wst.internet.cache (1.0.201.v200705302225) "Cache URI Resolver
> Plug-in" [Starting]
> org.eclipse.wst.internet.monitor.core (1.0.203.v20070608) "Monitor"
> [Starting]
> org.eclipse.wst.internet.monitor.ui (1.0.203.v20070608) "TCP/IP Monitor"
> [Starting]
> org.eclipse.wst.javascript.core (1.0.101.v200706071955) "Structured Source
> JavaScript Model" [Starting]
> org.eclipse.wst.javascript.ui (1.0.101.v200705302225) "SSE JavaScript
> Source Editor" [Starting]
> org.eclipse.wst.javascript.ui.infopop (1.0.2.v200706110217) "Javascript
> infopop" [Resolved]
> org.eclipse.wst.server_core.feature.source
> (2.0.0.v200706041905-2-CL8s733G3E4B2862) "Web Standard Tools - Server Core
> Source" [Resolved]
> org.eclipse.wst.server_ui.feature.source
> (2.0.0.v200706041905-77-CQ9vCXBjvZGTVARHF8DBA) "Web Standard Tools -
> Server UI Source" [Resolved]
> org.eclipse.wst.serve
Re: Eclipse timeline plugin [message #581152 is a reply to message #28182] Thu, 13 September 2007 16:40 Go to previous message
Robert Elves is currently offline Robert ElvesFriend
Messages: 87
Registered: July 2009
Member
Here are the primary entry points you will likely need:

TaskList taskList = TasksUiPlugin.getTaskListManager().getTaskList();

// Retrieve all categories
Set<AbstractTaskCategory> categories = taskList.getCategories();

// Retrieve all queries
Set<AbstractRepositoryQuery> queries = taskList.getQueries();

Call getChildren() on either of these returned types to get all
AbstractTask objects contained within.

I've added these notes to:

http://wiki.eclipse.org/Mylyn_Integrator_Reference#Accessing _the_Task_List

Feel free to expand on this as you proceed.

-Rob


Jay Chen wrote:
> Yes, there is bug showing all task groups, currently just show task
> categories, and i am trying to fix it.
>
> Since i am not familiar with Mylyn API, do you have any advisement on
> retreiveing all task groups and retreiveing special groups tasks?
>
> I am cleaning up the code, i will upload the code soon.
>
> "David Rothenberger" <daveroth@acm.org> wrote in message
> news:fc771c$kde$1@build.eclipse.org...
>> On 9/3/2007 11:26 PM, Jay Chen wrote:
>>> I recently start a eclipse plugin project which use Timeline view (from
>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>> timeline view.
>> I tried out this plugin yesterday and really like it. One question: Can it
>> display information about Mylyn tasks from repositories other than the
>> local one? I have a Trac repository and the timeline doesn't seem to
>> include tasks from that repository.
>>
>> --
>> David Rothenberger ---- daveroth@acm.org
>>
>> wolf, n.:
>> A man who knows all the ankles.
>
>
Re: Eclipse timeline plugin [message #581207 is a reply to message #28396] Fri, 14 September 2007 05:48 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Thanks Robert, i should read the wiki item carefully,;).

And one another quesion which can not find answer on wiki is, how can i get
the repository task created date, the AbstractTask getCreationDate() retrun
the local task created date not the creation date of the remote task.

To David Rothenberger, the bug had fixed, please update the Timeline
features.

"Robert Elves" <rob.elves@eclipse.org> wrote in message
news:fcbp6a$7j0$1@build.eclipse.org...
> Here are the primary entry points you will likely need:
>
> TaskList taskList = TasksUiPlugin.getTaskListManager().getTaskList();
>
> // Retrieve all categories
> Set<AbstractTaskCategory> categories = taskList.getCategories();
>
> // Retrieve all queries
> Set<AbstractRepositoryQuery> queries = taskList.getQueries();
>
> Call getChildren() on either of these returned types to get all
> AbstractTask objects contained within.
>
> I've added these notes to:
>
> http://wiki.eclipse.org/Mylyn_Integrator_Reference#Accessing _the_Task_List
>
> Feel free to expand on this as you proceed.
>
> -Rob
>
>
> Jay Chen wrote:
>> Yes, there is bug showing all task groups, currently just show task
>> categories, and i am trying to fix it.
>>
>> Since i am not familiar with Mylyn API, do you have any advisement on
>> retreiveing all task groups and retreiveing special groups tasks?
>>
>> I am cleaning up the code, i will upload the code soon.
>>
>> "David Rothenberger" <daveroth@acm.org> wrote in message
>> news:fc771c$kde$1@build.eclipse.org...
>>> On 9/3/2007 11:26 PM, Jay Chen wrote:
>>>> I recently start a eclipse plugin project which use Timeline view (from
>>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>>> timeline view.
>>> I tried out this plugin yesterday and really like it. One question: Can
>>> it display information about Mylyn tasks from repositories other than
>>> the local one? I have a Trac repository and the timeline doesn't seem to
>>> include tasks from that repository.
>>>
>>> --
>>> David Rothenberger ---- daveroth@acm.org
>>>
>>> wolf, n.:
>>> A man who knows all the ankles.
>>
>>
>
Re: Eclipse timeline plugin [message #581221 is a reply to message #28867] Fri, 14 September 2007 18:16 Go to previous message
David Rothenberger is currently offline David RothenbergerFriend
Messages: 5
Registered: July 2009
Junior Member
On 9/13/2007 10:48 PM, Jay Chen wrote:
> To David Rothenberger, the bug had fixed, please update the Timeline
> features.

Thanks! That did fix the problem.

I did encounter one other small bug, though. If I click on Scroll To
Date ... and then Today, I lose all events. If I click on OK in the same
box, they all come back.

--
David Rothenberger ---- daveroth@acm.org

QOTD:
"She's about as smart as bait."
Re: Eclipse timeline plugin [message #581260 is a reply to message #28867] Fri, 14 September 2007 18:53 Go to previous message
Mik Kersten is currently offline Mik KerstenFriend
Messages: 287
Registered: July 2009
Senior Member
Great to see all this interest in the timeline :)

Jay: please post API questions to the mylyn-integrators list, and feel
free to open bugs tagged [api] to make access to the information you
need easier.

http://eclipse.org/mylyn/community/

Mik

Jay Chen wrote:
> Thanks Robert, i should read the wiki item carefully,;).
>
> And one another quesion which can not find answer on wiki is, how can i get
> the repository task created date, the AbstractTask getCreationDate() retrun
> the local task created date not the creation date of the remote task.
>
> To David Rothenberger, the bug had fixed, please update the Timeline
> features.
Re: Eclipse timeline plugin [message #581786 is a reply to message #25224] Fri, 21 September 2007 08:19 Go to previous message
Martin Klinke is currently offline Martin KlinkeFriend
Messages: 80
Registered: July 2009
Member
Jay,

This is really a great idea, I have tried your plug-in and after setting
the http port via the command line it worked for me. However, it is a
little annoying to define a new port for each instance of eclipse, since
I'm often running two or three at once. I don't know if it's possible
with the current implementation of the timeline component, but a
solution could be to run it offline and configure it only via the
browser widget API (assuming you are using that) without having a web
server.

I would enjoy hearing your thoughts about this.
Thanks for your great work so far!

Martin Klinke

Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
>
> Thanks.
>
>
Re: Eclipse timeline plugin [message #581883 is a reply to message #30082] Mon, 24 September 2007 06:43 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Hi Martin,

For this plugin depends on the great effort from
http://simile.mit.edu/timeline which is a javascript component that best
used in client-server mode. So I choose use a web server in the plugin. To
keep the plugin simple, I use the simple OSGi http service and it was a lazy
approching. Maybe I should change to use the org.eclipse.equinox.http.jetty
which can do more server configuration as the Eclipse Help does. But it is a
heavier implementation than OSGi http service.

About the your suggestion of offline mode, I think it will increase the
complication of manage the javascript source and the datasource locally,
and reduce the performance (must write datasource to somewhere). But I will
try it.

Anyway, thanks for your feedback.

"Martin Klinke" <mk@nospam.org> wrote in message
news:fcvur0$2m2$1@build.eclipse.org...
> Jay,
>
> This is really a great idea, I have tried your plug-in and after setting
> the http port via the command line it worked for me. However, it is a
> little annoying to define a new port for each instance of eclipse, since
> I'm often running two or three at once. I don't know if it's possible with
> the current implementation of the timeline component, but a solution could
> be to run it offline and configure it only via the browser widget API
> (assuming you are using that) without having a web server.
>
> I would enjoy hearing your thoughts about this.
> Thanks for your great work so far!
>
> Martin Klinke
>
> Jay Chen wrote:
>> Good morning/afternoon/evening,
>>
>> Please forgive me if I post the wrong place, but i definitely think it
>> will help to mylyn users.
>>
>> I recently start a eclipse plugin project which use Timeline view (from
>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>> timeline view.
>>
>> The project is http://code.google.com/p/eclipsetimeline/, though it is in
>> beta state, I hope someone can take a try and provide precious feedback
>> for me.
>>
>> Thanks.
Re: Eclipse timeline plugin [message #582304 is a reply to message #25224] Thu, 27 September 2007 08:51 Go to previous message
Eclipse UserFriend
Originally posted by: eclipse.20.dbaer.spamgourmet.com

Hello
I can't install it. The timeline-features in the Updates-dialog creates this
error message:
"Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."

Any hints?

Thank you!
d.
Re: Eclipse timeline plugin [message #582310 is a reply to message #30862] Thu, 27 September 2007 09:14 Go to previous message
Martin Klinke is currently offline Martin KlinkeFriend
Messages: 80
Registered: July 2009
Member
You have to install the Eclipse Project Equinox bundle feature from the
Eclipse Updates site.

Baer wrote:
> Hello
> I can't install it. The timeline-features in the Updates-dialog creates
> this error message:
> "Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."
>
> Any hints?
>
> Thank you!
> d.
Re: Eclipse timeline plugin [message #582332 is a reply to message #30896] Thu, 27 September 2007 11:56 Go to previous message
Eclipse UserFriend
Originally posted by: eclipse.20.dbaer.spamgourmet.com

Thank you for the hint, but I still get the same error message.
I have Eclipse 3.2.2 and installed the equinox-bundle (no entry in the "Featrue
Details", but 10 different org.eclipse.equinox.*-plugins). Equinox version
3.2.2.r322_v20070104-A15rI75VboyEcIl.

Martin Klinke schrieb:
> You have to install the Eclipse Project Equinox bundle feature from the
> Eclipse Updates site.
>
> Baer wrote:
>> Hello
>> I can't install it. The timeline-features in the Updates-dialog
>> creates this error message:
>> "Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."
>>
>> Any hints?
>>
>> Thank you!
>> d.
Re: Eclipse timeline plugin [message #582363 is a reply to message #30931] Thu, 27 September 2007 16:41 Go to previous message
Martin Klinke is currently offline Martin KlinkeFriend
Messages: 80
Registered: July 2009
Member
Do you have the org.eclipse.equinox.http plug-in? Maybe you need to
start with -clean? I have it running under 3.3.
Another thing you could try is to go to Find and Install -> Search for
new features to install and select ALL update sites you have (including
the one for timeline), select timeline and then select required.

HTH,
Martin

Baer schrieb:
> Thank you for the hint, but I still get the same error message.
> I have Eclipse 3.2.2 and installed the equinox-bundle (no entry in the
> "Featrue Details", but 10 different org.eclipse.equinox.*-plugins).
> Equinox version 3.2.2.r322_v20070104-A15rI75VboyEcIl.
>
> Martin Klinke schrieb:
>> You have to install the Eclipse Project Equinox bundle feature from
>> the Eclipse Updates site.
>>
>> Baer wrote:
>>> Hello
>>> I can't install it. The timeline-features in the Updates-dialog
>>> creates this error message:
>>> "Timeline (1.0.0.200709141105) requires plug-in "javax.servlet"."
>>>
>>> Any hints?
>>>
>>> Thank you!
>>> d.
Re: Eclipse timeline plugin [message #582401 is a reply to message #30227] Thu, 27 September 2007 18:05 Go to previous message
Dennis Vaughn is currently offline Dennis VaughnFriend
Messages: 13
Registered: July 2009
Junior Member
For the jetty plugin if you specify 0 for the port then it uses the
first available port. You can then retrieve the http service and get
the port property to see what port it used. I thought this was true for
the osgi http service as well. At least this way a port would not need
to be specified. I have not used the timeline plugin so I am not sure
if this solution would work for you.

Cheers,
Dennis

Jay Chen wrote:
> Hi Martin,
>
> For this plugin depends on the great effort from
> http://simile.mit.edu/timeline which is a javascript component that best
> used in client-server mode. So I choose use a web server in the plugin. To
> keep the plugin simple, I use the simple OSGi http service and it was a lazy
> approching. Maybe I should change to use the org.eclipse.equinox.http.jetty
> which can do more server configuration as the Eclipse Help does. But it is a
> heavier implementation than OSGi http service.
>
> About the your suggestion of offline mode, I think it will increase the
> complication of manage the javascript source and the datasource locally,
> and reduce the performance (must write datasource to somewhere). But I will
> try it.
>
> Anyway, thanks for your feedback.
>
> "Martin Klinke" <mk@nospam.org> wrote in message
> news:fcvur0$2m2$1@build.eclipse.org...
>> Jay,
>>
>> This is really a great idea, I have tried your plug-in and after setting
>> the http port via the command line it worked for me. However, it is a
>> little annoying to define a new port for each instance of eclipse, since
>> I'm often running two or three at once. I don't know if it's possible with
>> the current implementation of the timeline component, but a solution could
>> be to run it offline and configure it only via the browser widget API
>> (assuming you are using that) without having a web server.
>>
>> I would enjoy hearing your thoughts about this.
>> Thanks for your great work so far!
>>
>> Martin Klinke
>>
>> Jay Chen wrote:
>>> Good morning/afternoon/evening,
>>>
>>> Please forgive me if I post the wrong place, but i definitely think it
>>> will help to mylyn users.
>>>
>>> I recently start a eclipse plugin project which use Timeline view (from
>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>> timeline view.
>>>
>>> The project is http://code.google.com/p/eclipsetimeline/, though it is in
>>> beta state, I hope someone can take a try and provide precious feedback
>>> for me.
>>>
>>> Thanks.
>
>
Re: Eclipse timeline plugin [message #583297 is a reply to message #31069] Thu, 11 October 2007 14:41 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Hi,

Sorry for the late reply, i had a long vacation, :).

Thanks for your hint Dennis, i have found a work around for this issue.

If the http service is not avaliable, and BundleContext has no
org.osgi.service.http.port property, set a system property
org.osgi.service.http.port with a unused local port then start
org.eclipse.equinox.http will resolve this problem.

To Martin, i had update the update site files, please update your plugins.

To other people who are intersted with this plugin, since here is mylyn
newsgroup, if you had any issues or suggestions on this plugin, please feel
free to post it in the project issues page, instead here. I think here is
used to talk about mylyn mostly. :).


"Dennis Vaughn" <devaughn@cisco.com>
??????:fdgrce$6go$1@build.eclipse.org...
> For the jetty plugin if you specify 0 for the port then it uses the first
> available port. You can then retrieve the http service and get the port
> property to see what port it used. I thought this was true for the osgi
> http service as well. At least this way a port would not need to be
> specified. I have not used the timeline plugin so I am not sure if this
> solution would work for you.
>
> Cheers,
> Dennis
>
> Jay Chen wrote:
>> Hi Martin,
>>
>> For this plugin depends on the great effort from
>> http://simile.mit.edu/timeline which is a javascript component that best
>> used in client-server mode. So I choose use a web server in the plugin.
>> To keep the plugin simple, I use the simple OSGi http service and it was
>> a lazy approching. Maybe I should change to use the
>> org.eclipse.equinox.http.jetty which can do more server configuration as
>> the Eclipse Help does. But it is a heavier implementation than OSGi http
>> service.
>>
>> About the your suggestion of offline mode, I think it will increase the
>> complication of manage the javascript source and the datasource locally,
>> and reduce the performance (must write datasource to somewhere). But I
>> will try it.
>>
>> Anyway, thanks for your feedback.
>>
>> "Martin Klinke" <mk@nospam.org> wrote in message
>> news:fcvur0$2m2$1@build.eclipse.org...
>>> Jay,
>>>
>>> This is really a great idea, I have tried your plug-in and after setting
>>> the http port via the command line it worked for me. However, it is a
>>> little annoying to define a new port for each instance of eclipse, since
>>> I'm often running two or three at once. I don't know if it's possible
>>> with the current implementation of the timeline component, but a
>>> solution could be to run it offline and configure it only via the
>>> browser widget API (assuming you are using that) without having a web
>>> server.
>>>
>>> I would enjoy hearing your thoughts about this.
>>> Thanks for your great work so far!
>>>
>>> Martin Klinke
>>>
>>> Jay Chen wrote:
>>>> Good morning/afternoon/evening,
>>>>
>>>> Please forgive me if I post the wrong place, but i definitely think it
>>>> will help to mylyn users.
>>>>
>>>> I recently start a eclipse plugin project which use Timeline view (from
>>>> http://simile.mit.edu/timeline/) to show events in eclipse, and it
>>>> integrate with Mylyn to show Mylyn tasks modification in the scrolling
>>>> timeline view.
>>>>
>>>> The project is http://code.google.com/p/eclipsetimeline/, though it is
>>>> in beta state, I hope someone can take a try and provide precious
>>>> feedback for me.
>>>>
>>>> Thanks.
>>
>>
>
Re: Eclipse timeline plugin [message #583315 is a reply to message #28876] Thu, 11 October 2007 14:41 Go to previous message
Eclipse UserFriend
Originally posted by: chen4613.gmail.com

Hi David,

It is fixed, please update your plugins.

"David Rothenberger" <daveroth@acm.org>
??????:fcej55$nut$1@build.eclipse.org...
> On 9/13/2007 10:48 PM, Jay Chen wrote:
>> To David Rothenberger, the bug had fixed, please update the Timeline
>> features.
>
> Thanks! That did fix the problem.
>
> I did encounter one other small bug, though. If I click on Scroll To Date
> ... and then Today, I lose all events. If I click on OK in the same box,
> they all come back.
>
> --
> David Rothenberger ---- daveroth@acm.org
>
> QOTD:
> "She's about as smart as bait."
>
Re: Eclipse timeline plugin [message #584379 is a reply to message #25224] Sat, 03 November 2007 19:58 Go to previous message
Willian Mitsuda is currently offline Willian MitsudaFriend
Messages: 27
Registered: July 2009
Junior Member
Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
>
> Thanks.
>
>

Hi, I'm willing to try this plugin, but update manager complains
org.eclipse.equinox.http bundle is not available even it is.

Also, where is the source code? I was willing to take a look in why that
error was happening, but SVN repository in google code is empty.

Willian.
Re: Eclipse timeline plugin [message #584391 is a reply to message #35386] Sat, 03 November 2007 22:14 Go to previous message
Eugene Kuleshov is currently offline Eugene KuleshovFriend
Messages: 504
Registered: July 2009
Senior Member
Willian Mitsuda wrote:
> Hi, I'm willing to try this plugin, but update manager complains
> org.eclipse.equinox.http bundle is not available even it is.
>
> Also, where is the source code? I was willing to take a look in why
> that error was happening, but SVN repository in google code is empty.
By the way, why does that plugin require http server? Can't you just
serve a content from the Java code directly to the browser widget and
hook up some listeners to handle events from browser widget?

regards,
Eugene
Re: Eclipse timeline plugin [message #584879 is a reply to message #25224] Mon, 19 November 2007 13:42 Go to previous message
Andreas Goetz is currently offline Andreas GoetzFriend
Messages: 110
Registered: July 2009
Senior Member
Nice idea- but can't get it to run. After installing, I can show the view,
but all I get is (presumably) a javascirpt error:
Caught exception: [object Error]
Details: undefined

Any idea what I'm doing wrong?

Thanks,
Andi

"Jay Chen" <chen4613@gmail.com> wrote in message
news:fbitqj$j4i$1@build.eclipse.org...
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it
> will help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it
> integrate with Mylyn to show Mylyn tasks modification in the scrolling
> timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback
> for me.
>
> Thanks.
>
Re: Eclipse timeline plugin [message #591110 is a reply to message #32820] Thu, 10 July 2008 07:14 Go to previous message
Andreas Goetz is currently offline Andreas GoetzFriend
Messages: 110
Registered: July 2009
Senior Member
Hi Jay,

I really like the plugin and would like to extend it. Any chance you
could release the sources or upgrade it to current Mylyn 3.0 release?

Thanks,
Andi

Jay Chen wrote:

> To other people who are intersted with this plugin, since here is mylyn
> newsgroup, if you had any issues or suggestions on this plugin, please feel
> free to post it in the project issues page, instead here. I think here is
> used to talk about mylyn mostly. :).
Re: Eclipse timeline plugin [message #598054 is a reply to message #25224] Tue, 07 July 2009 16:06 Go to previous message
Andreas Goetz is currently offline Andreas GoetzFriend
Messages: 110
Registered: July 2009
Senior Member
Hi everybody,

as I was interested in brushing up my Eclipse skills, I've gone ahead
and hacked together an updated version of this plugin from the
distributes jar files. No source had been made public, but the jars were
under New BSD License according to http://code.google.com/p/eclipsetimeline/

So.. if anybody is interested, I'd be happy to provide what I've got
sofar. Basically working in Eclipse 3.5 environment with Mylyn 3.2

Best regards,
Andreas


On 04.09.2007 08:26, Jay Chen wrote:
> Good morning/afternoon/evening,
>
> Please forgive me if I post the wrong place, but i definitely think it will
> help to mylyn users.
>
> I recently start a eclipse plugin project which use Timeline view (from
> http://simile.mit.edu/timeline/) to show events in eclipse, and it integrate
> with Mylyn to show Mylyn tasks modification in the scrolling timeline view.
>
> The project is http://code.google.com/p/eclipsetimeline/, though it is in
> beta state, I hope someone can take a try and provide precious feedback for
> me.
>
> Thanks.
Re: Eclipse timeline plugin [message #598841 is a reply to message #70339] Fri, 21 August 2009 11:43 Go to previous message
Thomas Kernstock is currently offline Thomas KernstockFriend
Messages: 29
Registered: July 2009
Location: Vienna
Junior Member
Andreas Goetz wrote on Tue, 07 July 2009 12:06
> So.. if anybody is interested, I'd be happy to provide what I've got
> sofar. Basically working in Eclipse 3.5 environment with Mylyn 3.2
>
> Best regards,
> Andreas

Hi Andreas,

I'm working with eclipse 3.5 too and would be very interested in the fixed plugin !
Unfortunately I can't enable the "private message" feature in my profile and don't want to post my emailaddress here. Could you attach the plugin to a message here or provide a link ?

best regards
Thomas
Re: Eclipse timeline plugin [message #598868 is a reply to message #598841] Wed, 26 August 2009 14:51 Go to previous message
Eclipse UserFriend
Originally posted by: tagadax.voila.fr

Hi Andreas,

I am also working with eclipse 3.5 and Mylyn 3.2, and I would like to use
your timeline development to see Mylyn tasks in it, but when I open the
Timeline view in Eclipse, I have the following message :
HttpService is not started. Please check the OSGi HTTP service
configuration, make sure the port is not in used.
Could you please help me to solve this problem? Thank you in advance.
Re: Eclipse timeline plugin [message #598875 is a reply to message #598841] Wed, 26 August 2009 14:54 Go to previous message
Eclipse UserFriend
Originally posted by: tagadax.voila.fr

Hello,
I am trying to use timeline, but :
In the timeline view in Eclipse, I have the following message :
HttpService is not started. Please check the OSGi HTTP service
configuration, make sure the port is not in used.

Could you please help me? I would like to see mylyn tasks in timeline in
Eclipse.

Best regards.
Previous Topic:CodeBeamer
Next Topic:Encoding problem with JIRA Connector
Goto Forum:
  


Current Time: Thu Mar 28 11:43:05 GMT 2024

Powered by FUDForum. Page generated in 0.07235 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top