Eclipse plgin development

hi am trying to develop a plug in on eclipse
and i want to get the path for the class(project)
that eclipse editor(on focus) is currently opining ...???!!!
is there anyway to do this ???
actually i believe there is cause many plugins
on eclipse uses that but how?????
thanks in advance :)

Have a look at the javadocs for org.eclipse.core.resources.ResourcesPlugin and org.eclipse.core.resources.IWorkspace. You can register listeners somewhere in there that will be notified of what is currently in the editor. I can't remember exactly how to do it, but that's the area you're interested in. What's actually in the editor pane is represented by an instance of ICompilationUnit, so look out for that too
In future, you're far far better off going to the newsgroups at eclipse.org for this. Hardly anyone on here knows anything about SWT, Jface or Eclipse plugins in general. You could also do a lot worse than pick up the following two books - loads of useful information in them
Building commercial quality plugins
Eclipse Rich Client Platform

Similar Messages

  • Hello..i am new to ATG. Kindly help me in setup of eclipse to develop,deploy and run new ATG project.

    Kindly help me in setup of eclipse to develop,deploy and run new ATG project

    Install ATG eclipse plugin following steps in below location
    Oracle ATG Web Commerce - Appendix D. Development Tools for Eclipse
    Then follow steps in following link to setup build environment
    Reassembling Your Application Using Ant

  • TimesTen and Eclipse java development problem

    Hello all
    Using TimesTen with JDBC in from a Java code developed on Eclipse I encounter a problem: when running the program in debug mode, everything works fine. Running without debug, or outside Eclipse, results in the following error:
    java.sql.SQLException: [TimesTen][TimesTen 7.0.5.0.0 ODBC Driver][TimesTen]TT0837: Cannot attach data store shared-memory segment, error 8 -- file "db.c", lineno 7891, procedure "sbDbCreate"
    Does anyone know the cause of this, or can point me to logs or other resources I can look into?
    Regards,
    Shaul Peled
    Nuance Communication Inc.

    Okay, it is almost certainly an address space issue. Unfortunately 32-bit Windows is about the most problematic platform from this perspective. A TimesTen datastore is a single, contiguous memory region of size approximating PermSize+TempSize+LogBuffSize+DS header. In your case that will be about 1098 Mb. To 'connect' to this datastore, it is necessary to map the datastore memory (it is a shared mapping allocated from the Windows paging file) into your process (in this case the JVM) as a single region. Unfortunately, unlike most O/S, in Windows shared libraries (DLLs) have to be loaded at fixed locations in the address space defined when the DLL was linked. This means that although your process has a 4 GB address space (with quite a bit reserved for WIndows and other uses) that space is often highly fragmented with various DLLs (system and application) located all over the place. This means that often it is hard to find a single contiguous address space region to map a large datastore.
    into.
    To verify that this is the issue, could you try reducing the datastore size to say PermSize=128, TempSize=64 and see if you can connect then. If you can then you will have to experiment by slowly increasing Perm and Temp until you find the maximum size store you can accomodate. If you are using no logging (Are you sure that is what you want? You will end up with a single threaded datastore if you do that...) you could reduce LogBuffSize to the smallest allowed value (128 Kb).
    If it does turn out to be an address space issue then you have 3 options:
    1. Live with a smaller datastore size.
    2. Try and re-arrange the memory map by rebasing DLLs to create a larger contiguous region. Note that ijn any event it is very unlikely you will ever be able to exceed ~1.5 Gb for a datastore.
    3. Switch to 64-bit Windows, 64-bit TimesTen and a 64-bit JVM. Then the only limit on datastore size is available RAM.
    Let me know the outcome.
    Regards,
    Chris

  • Can i use ADF faces in Eclipse to develop JSF applications

    Hi,
    i have used Jdeveloper to develop JSF based application but for some reasons
    i need to run this application in Ecplise. Is there any possibility for that.

    Yes,
    you can run ADF Faces applications in Eclipse. However, if you use ADF for binding then this may be a bit more complicated
    Frank

  • Eclipse Plugin development

    I want to build a eclipse plugin which can add some source to .jsp page.
    the plugin should add code for some TAG by asking properties values through wizard kind of thing.
    it should add the generated code for that TAG to current position of the cursor.
    Can anybody help me .....I have no idea about plugin development.
    Thanks in advance.

    read the eclipse documentation. this isn't an eclipse forum.

  • Creating Dynamic Wizard components in Eclipse Plugin Development

    Am developing an Eclipse Plug in with Wizard and Wizard Page Extension.
    Right now I am able to build static Wizard Pages with components like Buttons, Text Boxes etc.
    How can I build dynamic Wizard Pages? i.e., Wizard Pages with Components like Buttons and Text Boxes added during Run-Time?
    Thanks!!

    read the eclipse documentation. this isn't an eclipse forum.

  • Eclipse/EMF developer in India

    Hello,
    Looking for a experienced Eclipse developer with EMF knowledge in India (preferably Bangalore).
    Please email [email protected]
    Thanks

    Better you check vEmployee. They provide Java services in Bangalore http://www.vemployee.com/hire-java-programmers.html

  • Plug a Swing-based development tool into Eclipse

    This article teaches you how to integrate a stand-alone Swing-based editor into the Eclipse Platform as a plug-in. Using simple techniques, you can share resources between the Swing tool, the Eclipse Platform, and various SWT widgets -- and these resources can communicate through mutual awareness. Tool vendors who want to bring Eclipse-based development tools to market with a minimal amount of re-coding will also find this article helpful.
    Learn how to integrate a Swing editor into the Eclipse Platform
    http://www-106.ibm.com/developerworks/java/library/os-swing/?t=gr,JavaW03=EclipseSwing

    Originally posted by: martin.brenda.martinbrenda.de
    > Anybody is welcomed to share any first-hand expreience, links, opinions,
    > plz!
    I am working since a few months on this topic. We have a Swing Application
    which we want to integrate in Eclipse. We decided to do this in little
    steps. One of the first is to integrate the application as far as possible
    over the Swing Bridge. And the results are really good. We integrated our
    editor, some views, resources and the most actions so far. We hope to
    release our Alpha version in February.
    The really nice thing is, that we could take allmost all our existing Swing
    Wizards and so on from the old application. Only some wizards for Project
    and new Resource creation had be made new. The communication between AWT /
    Swing and SWT is also runnig well. All events (Mouse, Keys..) are being
    transfered from one toolkit to the other. The only problem is the
    synchronization of the Swing and SWT thread. You often get "Invalid thread
    access" messages. But this is solvable.
    Gentleware also integrated their modelling tool Poseidon in Eclipse over the
    Swing-Bridge. If you wanna see how it looks like, here the download page:
    http://gentleware.com/downloadcenter.0.html
    You need the Professional version. Their integration is not so nice (I think
    they did it really fast). But I think they work on it in the future. But
    here you can see that it works ;-)
    Here are also some links:
    http://eclipsewiki.editme.com/CallingSwingFromSWT
    http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.sni ppets/src/org/eclipse/swt/snippets/Snippet135.java?rev=HEAD& amp;content-type=text/vnd.viewcvs-markup&only_with_tag=H EAD
    http://www.logemann.org/day/archives/000008.html
    Bye,
    Martin Brenda

  • Developing SIP Servlet using Eclipse

    Dear all,
    In the BEA documentation "developing SIP Servlet using Eclipse", it says:
    WebLogic SIP Server 3.0
    JDK 1.4.2
    Ant (installed with WebLogic SIP Server 3.0)
    Eclipse version 3.1
    CVS client and server (required only for version control)
    I want to kown it should be JDK 1.4.2 but not 1.5.0?
    And how to set Ant which installed with Weblogic SIP Server in Eclipse? Because I checked that Eclipse use the Ant by defaut.
    I really have problem with setting up Eclipse for developping SIP Servlet, Thanks for your help!
    li

    Dear all,
    I have resolved it.
    The path is not correct in the ant build file.
    Thanks

  • WebLogic Event Server Eclipse Development Environment now AVAILABLE

    The new Eclipse-based development environment for the WebLogic Event Server is now available.
    These new developer capabilities will simplify and accelerate the creation, deployment and debugging of EDA application for the new Java container.
    [url http://commerce.bea.com/showproduct.jsp?family=WLEVS&major=2.0&minor=-1]

    When starting the event server from the Eclipse server view, I get the following error...
    <Aug 14, 2007 3:58:55 PM EDT> <Critical> <BootBundle> <BEA-1004004> <The system could not find the default security providers due to "null". The system will exit.>
    Am I possibly just missing a configuration value?
    thanks!
    Mike

  • System.out not working on eclipse

    Greetings...
    I am no longer a newbie on Java, but I have been facing an issue lately that I have been unable to resolve myself, even though it seems to be something so silly.
    I have been using eclipse for development, and by developing a simple "Just to practice" code I have found myself unable to use System class or any of its methods at a certain point. See the code below:
    package one;
    import java.util.Scanner;
    public ClassOne {
    public static void main (String args[]){
    Scanner reader = new Scanner(System.in); /*Works just fine here*/
    int x = 0;
    System.out.println("Type in the number of objects expected"); /*Does not work at all, like if System was something I could not use at all. Not an identifier */
    Scanner readertwo = new Scanner(System.in); /*System does not work here either*/
    }Even if I rewrite the code after that, by erasing the import statement and all other System references in the code, System does not work again.
    If anybody has ever faced the same issue and knows what I am doing wrong and what I can do to fix it, I'd really be grateful.
    Thanks to all, and happy 2009.
    Santana T

    Santana_Thiago wrote:
    It works on NetBeans.
    On eclipse I get the following error:
    ERROR: JDWP Unable to get JNI 1.2 Environment, jvm->GetEnv() return code = -2+
    *JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:820]*+
    The funniest thing is that if copy and paste the code from somewhere else into eclipse it works. What a drag!!!!
    Thank you.
    Santana TNever seen that error but it sounds to me that your Eclipse installation is screwed up!

  • Building eclipse 3.1 on Solaris 10 x86

    I found an easy way to build eclipse on solaris x86, as followed:
    $ JAVA_HOME=/usr/j2se; export JAVA_HOME
    $ ANT_HOME=/home/compl/sfw/apache-ant-1.6.5; export ANT_HOME
    $ PATH=$ANT_HOME/bin:$PATH; export PATH
    $ mkdir -p ~/farm/eclipse-src
    $ cd ~/farm
    $ vi regexrename
    -----start create script regexrename-----
    -enter the following content:
    #!/bin/sh
    echo Renaming $1 to `echo $1 | sed $2`
    mv "$1" "`echo $1 | sed $2`"
    -save and quit vi
    -----end create script regexrename-----
    $ chmod +x regexrename<br />
    $ vi regexreplace
    -----start create script regexreplace-----
    -enter the following content:
    #!/bin/sh
    echo Replacing file $1...
    mv "$1" "$1.replaced"
    sed "$2" "$1.replaced" > "$1"
    -save and quit vi
    -----end create script regexreplace-----
    $ chmod +x regexreplace<br />
    $ cd eclipse-src
    $ unzip ~/Softwares/java/eclipse-sourceBuild-srcIncluded-3.1.zip
    $ vi ./build
    -----start modify script ./build-----
    -change line:
    export ANT_OPTS=-Xmx1000M
    -to
    ANT_OPTS=-Xmx1000M; export ANT_OPTS
    -add a blank line at end of file, to regard the last line to sed-----
    -----end modify script ./build-----
    -----now replace all sparc with i386 in directory and file names,
    -----don't change i386 to x86, although x86 seems better follow eclipse src naming conventions,
    -----or you have to perform some extra modifications on some scripts to correct x86 to i386,
    -----like the awt lib path, that is $JAVA_HOME/jre/lib/sparc on sun machines and
    -----$JAVA_HOME/jre/lib/i386 on intel PCs, NOT $JAVA_HOME/jre/lib/x86-----
    $ find ./ -name \*sparc\* -exec ../regexrename "{}" 's/sparc/i386/g' \;
    Renaming ./plugins/org.eclipse.platform.source.solaris.gtk.sparc to ./plugins/org.eclipse.platform.source.solaris.gtk.i386
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/frag ment.xml: No such file or directory
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/META -INF: No such file or directory
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/buil d.properties: No such file or directory
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/abou t.html: No such file or directory
    Renaming ./plugins/org.eclipse.rcp.source.solaris.gtk.sparc to ./plugins/org.eclipse.rcp.source.solaris.gtk.i386
    find: stat() error ./plugins/org.eclipse.rcp.source.solaris.gtk.sparc/build.xml : No such file or directory
    Renaming ./assemble.org.eclipse.sdk.solaris.gtk.sparc.xml.replaced to ./assemble.org.eclipse.sdk.solaris.gtk.i386.xml.replaced
    -----Regarding the errors above, re-run the command to make sure-----
    $ find ./ -name \*sparc\* -exec ../regexrename "{}" 's/sparc/i386/g' \;
    $
    -----now replace all sparc inside all revelant text files with i386-----
    $ find ./ -type f \( -name \*.xml -o -name \*.properties -o -name \*.sh -o -name build \) -exec fgrep -s sparc "{}" \; -exec ../regexreplace "{}" 's/sparc/i386/g' \;
    Replacing file ./build...
    Replacing file ./plugins/org.eclipse.ui.cheatsheets/build.xml...
    Replacing file ./assemble.org.eclipse.sdk.all.xml...
    $
    -----Perform a normal build-----
    $ sh ./build -os solaris -ws gtk -arch i386 -compilelibs
    BUILD SUCCESSFUL
    Total time: 17 minutes 45 seconds
    -----eclipse/eclipse seems remain the one for SPARC arch, update it manually-----
    $ cp launchertmp/eclipse eclipse/
    -----test run the compiled binary-----
    $ eclipse/eclipse
    -----eclipse 3.1 should start-----
    -----Finally, be careful if you want to keep or distribute result/solaris-gtk-i386-sdk.zip,
    -----eclipse/eclipse inside it remains the one for SPARC arch, you may want to
    -----update it first.-----

    bash
    may also need to set path to /usr/sfw/bin/gcc.
    and don't know why need to cp launchertmp/eclipse to overwrite the old one.
    But it do works for us.
    *** Date: Fri May 19 08:51:20 CST 2006
    *** Platform Details:
    *** System properties:
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20060118-1600
    eclipse.commands=-os
    solaris
    -ws
    gtk
    -arch
    sparc
    -launcher
    /export/home/looric/eclipse/./eclipse
    -name
    Eclipse
    -showsplash
    600
    -exitdata
    17
    -vm
    /usr/bin/java
    eclipse.product=org.eclipse.sdk.ide
    eclipse.startTime=1147999845899
    eclipse.vm=/usr/bin/java
    eclipse.vmargs=-Xms40m
    -Xmx256m
    -jar
    /export/home/looric/eclipse/./startup.jar
    eof=eof
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=/
    java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
    java.awt.printerjob=sun.print.PSPrinterJob
    java.class.path=/export/home/looric/eclipse/./startup.jar
    java.class.version=49.0
    java.endorsed.dirs=/usr/jdk/instances/jdk1.5.0/jre/lib/endorsed
    java.ext.dirs=/usr/jdk/instances/jdk1.5.0/jre/lib/ext
    java.home=/usr/jdk/instances/jdk1.5.0/jre
    java.io.tmpdir=/var/tmp/
    java.library.path=/usr/jdk/instances/jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances/jdk1.5.0/jre/../lib/i386:/usr/lib
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.5.0_06-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.5
    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.5.0_06
    java.vm.info=mixed mode, sharing
    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.5.0_06-b05
    line.separator=
    org.osgi.framework.bootdelegation=*
    org.osgi.framework.executionenvironment=J2SE-1.5
    org.osgi.framework.language=en
    org.osgi.framework.os.name=SunOS
    org.osgi.framework.os.version=5.10
    org.osgi.framework.processor=x86
    org.osgi.framework.system.packages=javax.accessibility,javax.activity,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,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.rmi.ssl,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stream,javax.xml.validation,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,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.ext,org.xml.sax.helpers
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.3.0
    org.osgi.supports.framework.extension=true
    os.arch=x86
    os.name=SunOS
    os.version=5.10
    osgi.arch=sparc
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundlestore=/export/home/looric/eclipse/configuration/org.eclipse.osgi/bundles
    osgi.configuration.area=file:/export/home/looric/eclipse/configuration/
    osgi.framework=file:/export/home/looric/eclipse/plugins/org.eclipse.osgi_3.1.2.jar
    osgi.framework.beginningstartlevel=1
    osgi.framework.shape=jar
    osgi.framework.version=3.1.2
    osgi.install.area=file:/export/home/looric/eclipse/
    osgi.instance.area=file:/export/home/looric/workspace/
    osgi.instance.area.default=file:/export/home/looric/workspace/
    osgi.logfile=/export/home/looric/workspace/.metadata/.log
    osgi.manifest.cache=/export/home/looric/eclipse/configuration/org.eclipse.osgi/manifests
    osgi.nl=en_US
    osgi.os=solaris
    osgi.splashLocation=/export/home/looric/eclipse/plugins/org.eclipse.platform_3.1.2/splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath=/export/home/looric/eclipse/plugins
    osgi.ws=gtk
    path.separator=:
    sun.arch.data.model=32
    sun.boot.class.path=/usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/i18n.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/sunrsasign.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/jsse.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/jce.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/charsets.jar:/usr/jdk/instances/jdk1.5.0/jre/classes
    sun.boot.library.path=/usr/jdk/instances/jdk1.5.0/jre/lib/i386
    sun.cpu.endian=little
    sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop=gnome
    sun.io.unicode.encoding=UnicodeBig
    sun.jnu.encoding=UTF-8
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=unknown
    user.country=US
    user.dir=/export/home/looric/eclipse
    user.home=/export/home/looric
    user.language=en
    user.name=looric
    user.timezone=PRC
    *** Features:
    org.eclipse.jdt (3.1.2) "Eclipse Java Development Tools"
    org.eclipse.jdt.source (3.1.2) "Eclipse Java Development Tools SDK"
    org.eclipse.pde (3.1.2) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.source (3.1.2) "Eclipse Plug-in Development Environment Developer Resources"
    org.eclipse.platform (3.1.2) "Eclipse Platform"
    org.eclipse.platform.source (3.1.2) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.rcp (3.1.2) "Eclipse RCP"
    org.eclipse.rcp.source (3.1.2) "Eclipse RCP Plug-in Developer Resources"
    org.eclipse.sdk (3.1.2) "Eclipse Project SDK"
    *** Plug-in Registry:
    org.apache.ant (1.6.5) "Apache Ant" [Resolved]
    org.apache.lucene (1.4.3) "Apache Lucene" [Resolved]
    org.eclipse.ant.core (3.1.1) "Ant Build Tool Core" [Resolved]
    org.eclipse.ant.ui (3.1.2) "Ant UI" [Resolved]
    org.eclipse.compare (3.1.1) "Compare Support" [Resolved]
    org.eclipse.core.boot (3.1.0) "Core Boot" [Resolved]
    org.eclipse.core.commands (3.1.0) "Commands" [Active]
    org.eclipse.core.expressions (3.1.0) "Expression Language" [Active]
    org.eclipse.core.filebuffers (3.1.2) "File Buffers" [Active]
    org.eclipse.core.resources (3.1.2) "Core Resource Management" [Active]
    org.eclipse.core.resources.compatibility (3.1.0) "Core Resource Management Compatibility Fragment" [Resolved]
    org.eclipse.core.runtime (3.1.2) "Core Runtime" [Active]
    org.eclipse.core.runtime.compatibility (3.1.0) "Core Runtime Plug-in Compatibility" [Active]
    org.eclipse.core.variables (3.1.0) "Core Variables" [Resolved]
    org.eclipse.debug.core (3.1.2) "Debug Core" [Active]
    org.eclipse.debug.ui (3.1.2) "Debug UI" [Active]
    org.eclipse.help (3.1.0) "Help System Core" [Active]
    org.eclipse.help.appserver (3.1.0) "Help Application Server" [Resolved]
    org.eclipse.help.base (3.1.0) "Help System Base" [Resolved]
    org.eclipse.help.ui (3.1.1) "Help System UI" [Resolved]
    org.eclipse.help.webapp (3.1.0) "Help System Webapp" [Resolved]
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
    org.eclipse.jdt.core (3.1.2) "Java Development Tools Core" [Active]
    org.eclipse.jdt.debug (3.1.1) "JDI Debug Model" [Resolved]
    org.eclipse.jdt.debug.ui (3.1.2) "JDI Debug UI" [Resolved]
    org.eclipse.jdt.doc.isv (3.1.2) "Eclipse JDT Plug-in Developer Guide" [Resolved]
    org.eclipse.jdt.doc.user (3.1.1) "Eclipse Java Development User Guide" [Resolved]
    org.eclipse.jdt.junit (3.1.1) "Java Development Tools JUnit support" [Resolved]
    org.eclipse.jdt.junit.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
    org.eclipse.jdt.launching (3.1.0) "Java Development Tools Launching Support" [Resolved]
    org.eclipse.jdt.source (3.1.2) "Eclipse Java Development Tools SDK" [Resolved]
    org.eclipse.jdt.ui (3.1.2) "Java Development Tools UI" [Active]
    org.eclipse.jface (3.1.1) "JFace" [Active]
    org.eclipse.jface.text (3.1.2) "JFace Text" [Active]
    org.eclipse.ltk.core.refactoring (3.1.0) "Refactoring Core" [Resolved]
    org.eclipse.ltk.ui.refactoring (3.1.1) "Refactoring UI" [Resolved]
    org.eclipse.osgi.services (3.1.2) "OSGi Release 3 Services" [Resolved]
    org.eclipse.osgi.util (3.1.1) "OSGi R3 Utility Classes" [Resolved]
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
    org.eclipse.pde.build (3.1.2) "Plug-in Development Environment Build Support" [Resolved]
    org.eclipse.pde.core (3.1.1) "Plug-in Development Core" [Resolved]
    org.eclipse.pde.doc.user (3.1.2) "Eclipse Plug-in Development User Guide" [Resolved]
    org.eclipse.pde.junit.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
    org.eclipse.pde.runtime (3.1.1) "Plug-in Development Environment Runtime" [Resolved]
    org.eclipse.pde.source (3.1.2) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
    org.eclipse.pde.ui (3.1.2) "Plug-in Development UI" [Resolved]
    org.eclipse.platform (3.1.2) "Eclipse Platform" [Resolved]
    org.eclipse.platform.doc.isv (3.1.2) "Eclipse Platform Plug-in Developer Guide" [Resolved]
    org.eclipse.platform.doc.user (3.1.1) "Eclipse Workbench User Guide" [Resolved]
    org.eclipse.platform.source (3.1.2) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.rcp (3.1.0) "Eclipse RCP" [Resolved]
    org.eclipse.rcp.source (3.1.2) "Eclipse RCP Plug-in Developer Resources" [Resolved]
    org.eclipse.rcp.source.solaris.gtk.sparc (3.1.2) "Eclipse RCP Plug-in Developer Resources" [Resolved]
    org.eclipse.sdk (3.1.2) "Eclipse Project SDK" [Resolved]
    org.eclipse.search (3.1.2) "Search Support" [Resolved]
    org.eclipse.swt (3.1.0) "Standard Widget Toolkit" [Resolved]
    org.eclipse.swt.gtk.solaris.sparc (3.1.1) "Standard Widget Toolkit for GTK 2.0" [Resolved]
    org.eclipse.team.core (3.1.1) "Team Support Core" [Active]
    org.eclipse.team.cvs.core (3.1.1) "CVS Team Provider Core" [Resolved]
    org.eclipse.team.cvs.ssh (3.1.0) "CVS SSH Core" [Resolved]
    org.eclipse.team.cvs.ssh2 (3.1.0) "CVS SSH2" [Resolved]
    org.eclipse.team.cvs.ui (3.1.1) "CVS Team Provider UI" [Resolved]
    org.eclipse.team.ui (3.1.1) "Team Support UI" [Resolved]
    org.eclipse.text (3.1.1) "Text" [Active]
    org.eclipse.tomcat (4.1.30.1) "Tomcat Wrapper" [Resolved]
    org.eclipse.ui (3.1.2) "Eclipse UI" [Active]
    org.eclipse.ui.browser (3.1.1) "Browser Support" [Resolved]
    org.eclipse.ui.cheatsheets (3.1.1) "Cheat Sheets" [Resolved]
    org.eclipse.ui.console (3.1.2) "Console" [Resolved]
    org.eclipse.ui.editors (3.1.1) "Default Text Editor" [Active]
    org.eclipse.ui.externaltools (3.1.1) "External Tools" [Active]
    org.eclipse.ui.forms (3.1.0) "Eclipse Forms" [Resolved]
    org.eclipse.ui.ide (3.1.1) "Eclipse IDE UI" [Active]
    org.eclipse.ui.intro (3.1.1) "Welcome Framework" [Resolved]
    org.eclipse.ui.presentations.r21 (3.1.0) "R21 Presentation Plug-in" [Resolved]
    org.eclipse.ui.views (3.1.1) "Views" [Active]
    org.eclipse.ui.workbench (3.1.2) "Workbench" [Active]
    org.eclipse.ui.workbench.compatibility (3.1.0) "Workbench Compatibility" [Resolved]
    org.eclipse.ui.workbench.texteditor (3.1.2) "Text Editor Framework" [Active]
    org.eclipse.update.configurator (3.1.0) "Install/Update Configurator" [Active]
    org.eclipse.update.core (3.1.2) "Install/Update Core" [Resolved]
    org.eclipse.update.scheduler (3.1.0) "Automatic Updates Scheduler" [Active]
    org.eclipse.update.ui (3.1.1) "Install/Update UI" [Resolved]
    org.junit (3.8.1) "JUnit Testing Framework" [Resolved]
    system.bundle (3.1.2) "OSGi System Bundle" [Active]
    *** User Preferences:
    #Fri May 19 08:51:21 CST 2006
    /instance/org.eclipse.jdt.ui/org.eclipse.jface.textfont=1|Monospace|10|0|GTK|1|;
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles.version=8
    /instance/org.eclipse.ui/showIntro=false
    @org.eclipse.ui=3.1.2
    \!/=
    /instance/org.eclipse.ui.ide/platformState=88
    /configuration/org.eclipse.ui.ide/SHOW_WORKSPACE_SELECTION_DIALOG=true
    /instance/org.eclipse.core.resources/version=1
    /instance/org.eclipse.ui.ide/tipsAndTricks=true
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.editor.tab.width=
    @org.eclipse.core.resources=3.1.2
    /instance/org.eclipse.jdt.ui/useQuickDiffPrefPage=true
    @org.eclipse.ui.ide=3.1.1
    @org.eclipse.jdt.ui=3.1.2
    /instance/org.eclipse.jdt.ui/tabWidthPropagated=true
    /configuration/org.eclipse.ui.ide/RECENT_WORKSPACES_PROTOCOL=2
    /configuration/org.eclipse.ui.ide/MAX_RECENT_WORKSPACES=5
    /configuration/org.eclipse.ui.ide/RECENT_WORKSPACES=/export/home/looric/workspace
    /instance/org.eclipse.jdt.ui/fontPropagated=true
    /instance/org.eclipse.jdt.ui/useAnnotationsPrefPage=true
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.javadoclocations.migrated=true
    /instance/org.eclipse.ui.ide/quickStart=true
    file_export_version=3.0
    *** Current Install Configuration:
    Install configuration:
    Last changed on May 19, 2006
    Location: file:/export/home/looric/eclipse/configuration/org.eclipse.update/platform.xml
    Configured sites:
    platform:/base/
    Configured features:
    ID: org.eclipse.platform, Version: 3.1.2
    ID: org.eclipse.rcp, Version: 3.1.2
    ID: org.eclipse.platform.source, Version: 3.1.2
    ID: org.eclipse.jdt, Version: 3.1.2
    ID: org.eclipse.jdt.source, Version: 3.1.2
    ID: org.eclipse.pde, Version: 3.1.2
    ID: org.eclipse.pde.source, Version: 3.1.2
    ID: org.eclipse.sdk, Version: 3.1.2
    ID: org.eclipse.rcp.source, Version: 3.1.2
    Configured plug-ins:
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.core_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.cheatsheets_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.base_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ant.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.runtime_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.webapp_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.workbench_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.build_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.osgi.util_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.apache.lucene_1.4.3/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.resources_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.search_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.configurator_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.expressions_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.doc.user_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.resources.compatibility_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.tomcat_4.1.30.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.ssh_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.debug_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.ssh2_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.runtime.compatibility_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.core_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.debug.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.presentations.r21_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jface_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.doc.user_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.commands_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.osgi_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.compare_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.rcp.source.solaris.gtk.i386_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.sdk_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.forms_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform.doc.user_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.intro_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.console_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.rcp.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.filebuffers_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.editors_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.junit.runtime_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.runtime_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.rcp_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jface.text_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ltk.core.refactoring_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.junit.runtime_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.views_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.doc.isv_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.text_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.swt_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.swt.gtk.solaris.i386_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.appserver_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.apache.ant_1.6.5/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.variables_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.externaltools_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ant.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.boot_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.scheduler_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.debug.core_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.debug.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.ide_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.osgi.services_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.launching_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.junit_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.junit_3.8.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.browser_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform.doc.isv_3.1.2/

  • How to install plugin in the eclipse?

    Hi all,
    I made a download the KXML plugin (http://prdownloads.sourceforge.net/kxml/kxml2-min-2.2.2.jar?download), but I can't to install and use this plugin for to read XML files. For example: I need to import org.kxml2.io.KXmlParser. I put the downloaded file in the folder plugins of eclipse and I use the eclipse for develop with J2ME.
    I read one article that it teaches to read XML files using the KXML API, see below:
    XML File example:
    <?xml version="1.0" encoding="UTF-8"?>
    <list>
    <person>
    <name>Person 1</name>
    <phone>Number 1</phone>
    </person>
    <person>
    <name>Person 2</name>
    <phone>Number 2</phone>
    </person>
    </list>
    Source code of MIDlet
    import �
    import org.kxml2.io.KXmlParser;
    import org.xmlpull.v1.XmlPullParser;
    import org.xmlpull.v1.XmlPullParserException;
    public class XMLParserMidlet extends MIDlet {
    Form form = new Form("Persons");
    protected void startApp() throws MIDletStateChangeException {
    InputStream in = getClass().getResourceAsStream("person.xml");
    try {
    Display.getDisplay(this).setCurrent(form);
    parser(in);
    } catch (Exception e) {
    e.printStackTrace();
    private void parser(InputStream in) throws Exception {
    //begin the XMLParser
    KXmlParser parser = new KXmlParser();
    parser.setInput(new InputStreamReader(in));
    parser.nextTag();
    //it locates in the tag <list>
    parser.require(XmlPullParser.START_TAG, null, "list");
    //while is different END_TAG
    while (parser.nextTag () != XmlPullParser.END_TAG) {
    //put in the tag <person>
    parser.require(XmlPullParser.START_TAG, null, "person");
    parserPerson(parser);
    form.append("\n");
    parser.require(XmlPullParser.END_TAG, null, "person");
    parser.require(XmlPullParser.END_TAG, null, "list");
    parser.next();
    parser.require(XmlPullParser.END_DOCUMENT, null, null);
    private void parserPeerson(KXmlParser parser) throws Exception {
    //While is different of </person>
    while (parser.nextTag() != XmlPullParser.END_TAG) {
    //put in one tag "START". Ex: <name> ou <phone>
    parser.require(XmlPullParser.START_TAG, null, null);
    String name = parser.getName();
    String text = parser.nextText();
    System.out.println("Tag: " + name + " -> " + text);
    //add the text in the Form
    form.append(text);
    //put in the and of tag </name> or </phone>
    parser.require(XmlPullParser.END_TAG, null, name);
    //the other classes that is necessary
    pauseApp�
    destroyApp�
    thanks!

    Really? You downloaded exactly the same jar as the OP? And you read exactly the same tutorial and have a question about exactly the same code?
    I don't think so.
    The OP didn't get an answer because the question has absolutely nothing to do with the topic of this forum. It's going to be the same for you. So find an Eclipse forum where you can ask questions about Eclipse.
    Hidden Brains, indeed.

  • Adapter Module for File Adapter using Eclipse

    I want to develop Adapter Module using Eclipse, please let me know if it is possible?
    -How to use Eclipse to develop adapter module and deploy it on J2ee server.
    Thanks

    Hi,
    If you have NWDS , then you can directly deploy AM in PI server, if you are using eclipse to write code then genarate EAR file of your code, then you have to deploy in SDM using manual process.
    SEARCH IN SDN like how to deplot AM's, you will find many documents.
    Regards,
    RAJ

  • .class files in eclipse

    Hello,
    I am developing a web application in eclipse.After development i need to deploy the changed .class files to the server..
    but i am not getting the .class files in my eclipse are are only .java file present in my application.
    Can any tell me how to get the .class file for the modified .java file.
    Thanks in Advance

    Maybe this is just an issue with the view? The build folder in "Project Explorer" does not display the class files by default. However, it can be customized to display the .class files. Follow these steps...
    http://stackoverflow.com/questions/4163923/what-can-i-do-to-make-display-the-bin-folder-on-eclipse
    The "Navigator" view (open it using "Window" -> "Show View" menu option) also displays the .class files in your project.
    If you're using OEPE and deploying to a WebLogic Server, this tutorial will offer additional information about deployment and the FastSwap configuration "to reload altered classes without disturbing running applications."
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/jdev/obe11jdev/11/eclipse_intro/eclipse_intro.html

Maybe you are looking for

  • Updated Apps Will Not Sync  From iTunes To iPhone

    When I update Apps on my iMac in iTunes, they show that they are syncing over to my iPhone, but hey don't actually sync. Instead, I have tho also updat

  • Answer for connect IMac via monitor for Mac Mini

    hi I have a problem with an iMac late 2009 21.5 I want to connect to a new Mac Mini to use as a monitor with the Thunderbolt cable, the problem is that on the Apple support site does not say anything about 21.5 , since it is an important issue I woul

  • Why is Modified photo smaller in data size than Original after red-eye redu

    I'm using iPhoto 6 and was just about to go through and delete some unnecessary originals that are taking up lots of disk space, but then I noticed, all my originals are larger in file size than the modified images (example: Original = 1.2 MB, Modifi

  • Mounted Volumes o Desktop can't get rid of?

    I have 2 mounted volumes on my desktop that I have tried to get rid of and can't. There is not eject option. When I drag to Trash I get an error message that says "The disk "Net" wasn't ejected because one or more programs may be using it" except the

  • Setup between Oracle streams and MQ

    Hi All, I m trying to create the setup between oracle streams and Messing Queue(MQ).i have already install MQClient on my machine and messing gateways is also working fine,but accoring to setup docs i have created one user having all the granst they