OT: Eclipse shortcuts

For Eclipse users, I found a handy "cheat sheet" for Eclipse keyboard shortcuts at the following site:
http://eclipse-tools.sourceforge.net/shortcuts.html
I find that the more time I can keep my hands on the keyboard (as opposed to reaching for the mouse), the quicker I can crank out code. If you have the same preferences, you might find that cheat sheet as useful as I did.
Cheers!
~

For Eclipse users, I found a handy "cheat sheet" for
Eclipse keyboard shortcuts at the following site:
http://eclipse-tools.sourceforge.net/shortcuts.ht
ml
I find that the more time I can keep my hands on the
keyboard (as opposed to reaching for the mouse), the
quicker I can crank out code. If you have the same
preferences, you might find that cheat sheet as
useful as I did.
Cheers!
~Spasibo, tovarisch.

Similar Messages

  • Eclipse

    Hi,
    i have installed eclipse on my comp , but m unable to run it
    getting following error
    !ENTRY org.eclipse.core.launcher 4 0 Feb 18, 2004 20:29:06.480
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.RuntimeException: Could not find bootstrap code. Check location of boot plug-in or specify -boot.
         at org.eclipse.core.launcher.Main.searchForBoot(Main.java:472)
         at org.eclipse.core.launcher.Main.getBootPath(Main.java:442)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:285)
         at org.eclipse.core.launcher.Main.run(Main.java:751)
         at org.eclipse.core.launcher.Main.main(Main.java:587)
    plz help
    Sonal

    I had the same problem on Windows XP pro and it was caused by a bad value in 'target' of Eclipse shortcut.
    The reference to Eclipse runnable had my machine name included and the problem was fixed when I changed the reference into 'normal' format.
    The bad value:
    \\my_machine\c$\eclipse-SDK-2.1.1\eclipse.exe -vmargs -Xms64m -Xmx1024m
    Fixed:
    C:\eclipse-SDK-2.1.1\eclipse.exe -vmargs -Xms64m -Xmx1024m
    Of course there may be other reasons for this problem too...
    Jussi Iinatti

  • Eclipse start-up error

    Hello,
    I apologise in advance if this is the wrong forum. (Does anyone know of a good Eclipse forum by the way?)
    I'm trying to run eclipse and I have java 1.5 on my computer. But there must be some sort of path error because everytime I try to start eclipse, my error log shows Java 1.3.1. So...I'm trying to change the shortcut properties, but I'm not sure how to go about doing this.
    Eclipse is in: N:\Engineering\RW\eclipse_for_pc\eclipse
    and Java is in: C:\Program Files\Java\jre1.5.0_06
    What should I change in the "Shortcut to eclipse Properties" ?
    Thanks!
    R_W

    RW,
    Na mate we're definately not talking about the same things... welcome to planet java where up is up, and down is not up.
    Anyways.... I presume you are on windows? ... you must be if you're looking at shortcut properties.
    I was thinking that maybe eclipse might search the windows PATH environment variable for a javac.exe or javaw.exe in order to locate your java installation... But I can't find anything in the eclipse doco which supports that guess... So now I reckon it's probably bogus.. soorrry.
    Once you get the IDE started you can set the "active" JDK via Menu->Window->Preferences->Java->InstalledJRE's
    ... but that's not much help if IDE won't start in the first place.
    Click on the eclipse shortcut and have a look at the properties again... what is the "Target"??? Does that path and file exist? check it in explorer.
    ... oh, and post the log messages for us... we might just glean something you missed.
    Other than that try searching your eclipse installation for files which contain the JDK 1.3 path... and just hack in the 1.5 installation over the top... yuck.
    ... last but not least maybe the mongrel thing stores the JDK path in the regsitry... but don't go there unless you KNOW what you're doing.
    Keith.

  • Autoreplace in JDeveloper

    Hi All,
    Do we have auto-replace in JDeveloper like auto-replace in TOAD and PL/SQL Developer.
    If Yes, please let me know the navigation. I am using JDeveloper 11.1.1.3.0
    Thanks
    gt0990

    Do you mean such similar shortcuts?
    http://ikool.wordpress.com/2008/06/23/jdeveloper-and-eclipse-shortcuts-compared/
    or code templates:
    http://baigsorcl.blogspot.com/2010/04/using-code-templates-in-jdeveloper.html
    NA
    http://nickaiva.blogspot.com
    Edited by: Nick Aiva on Jan 31, 2011 5:16 PM

  • Deep Copy Performance

    hai guys..
    iam using this method given below for deepycopy .....is there any other method which can improve me the performance of deepcopying......i need it since my logic uses deepcopying many times
    public static Object copy(Object orig) {
    Object obj = null;
    try {
    // Write the object out to a byte array
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    ObjectOutputStream out = new ObjectOutputStream(bos);
    out.writeObject(orig);
    out.flush();
    out.close();
    // Make an input stream from the byte array and read
    // a copy of the object back in.
    ObjectInputStream in = new ObjectInputStream(
    new ByteArrayInputStream(bos.toByteArray()));
    obj = in.readObject();
    catch(IOException e) {
    e.printStackTrace();
    catch(ClassNotFoundException cnfe) {
    cnfe.printStackTrace();
    return obj;
    }

    Hi,
    I am using the same method than you to perform the DeepCopy.
    Of course that implementing cloneable on each of the fields used in the class and then implement clone in the main parent class like this:
    public MyClass clone(){
              MyClass newclass = new MyClass();
              newclass.setField( this.getField().clone() ) ;
              return newclass;
    }kind of thing....
    The problem is that if you have a complicated class, it is much easier to implement Serializable in the classes that you are going to use and try your luck.
    Is there an Eclipse shortcut to creting clone methods??
    That would be quite nice I think, cos it is really tedious to do by hand.
    Cheers,
    Alf

  • ClassCastExection on Undeploy

    We are using JAX-WS client stubs generated by wsimport to integratre external web services. Since the first external service was included the following exception occurs when undeploying the application.
    java.lang.ClassCastException: $Proxy236 cannot be cast to com.sun.xml.ws.client.Stub
    at weblogic.wsee.jaxws.spi.ClientInstancePool.release(ClientInstancePool.java:666)
    at weblogic.wsee.jaxws.spi.ClientInstancePool$MyClientInstanceListener.clientInstanceClosed(ClientInstancePool.java:794)
    at weblogic.wsee.jaxws.spi.ClientInstance.close(ClientInstance.java:300)
    at weblogic.wsee.jaxws.spi.ClientInstance$ClientInstanceInvocationHandler.finalize(ClientInstance.java:372)
    at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method)
    at java.lang.ref.Finalizer.runFinalizer(Finalizer.java:83)
    at java.lang.ref.Finalizer.access$100(Finalizer.java:14)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:160)
    Any suggestions on that? I don't know where to start.
    WLS: 10.3.3.0, Java 1.6.0_24, EJB 3 application

    Turns out a coworker helped me with this one. Somehow the properties on my Eclipse shortcut got hosed. Once I fixed them, this error went away.

  • Error on undeploy

    I'm using Eclipse, and I'm able to build and deploy fine, but when I try to undeploy, I get the following error:
    java.lang.NoClassDefFoundError: org/apache/xalan/processor/TransformerFactoryImpl
    This happened last week on the build and deploy, but I was able to clear it up by restoring defaults in ANT. No such luck this week. Any ideas?

    Turns out a coworker helped me with this one. Somehow the properties on my Eclipse shortcut got hosed. Once I fixed them, this error went away.

  • Jvm shut donw with exit code=1

    I have eclipse 3.0.1 with a lot of plugins. But one of this plugin arrive with a problem.
    Omondo EclipseUML last free version
    It stop my VM
    I think it is a lack of memory
    Exit code=1
    How can i change the mem size if tit is
    or if you have a better solution it would be cool
    thank you

    In the startup for eclipse (shortcut) you can set the memory size.
    e.g.
    C:\eclipse\eclipse.exe -D-Xmx512m -D-Xms200m

  • Anyone know what this error is?

    I am using eclipse to program. But today, when I clicked on eclipse shortcut on desktop, nothing happened exception the label of eclipse appeared and then disappeared quickly. Moving to the source of of Eclipse, I double-clicked on eclipse.exe and I discovered that a text file named hs_err_pid3132.log or hs_err_pid2472.log and so on was created automatically. It is created whenever I click on eclipse
    >
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d7f7f29, pid=3132, tid=1092
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x37f29]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x34aa6c00): JavaThread "CompilerThread0" daemon [_thread_in_native, id=1092]
    siginfo: ExceptionCode=0xc0000005, reading address 0x000a501b
    Registers:
    EAX=0xffffff00, EBX=0x3511fc00, ECX=0x3511fa20, EDX=0x000a501b
    ESP=0x3511f9f8, EBP=0x34ab2ad0, ESI=0x3511fa20, EDI=0x3511faa4
    EIP=0x6d7f7f29, EFLAGS=0x00010246
    Top of Stack: (sp=0x3511f9f8)
    0x3511f9f8: 3511fa20 6d7f8318 34ab2c38 6d7fa4de
    0x3511fa08: 34ab2c38 3511faa4 00000000 3511fc1c
    0x3511fa18: 00000000 0000000a 34ab2ad0 3511faa4
    0x3511fa28: 000a501b 34ab2300 ffffffff 6d7f84ca
    0x3511fa38: 34ab2c00 3511faac 00000001 00000008
    0x3511fa48: 34ab40b8 3511faac 6d7f157f 34ab23d0
    0x3511fa58: 34ab40f8 3511fc1c 3511fc58 00000000
    0x3511fa68: 6d7e2511 3511faac 3511fc1c 00010000
    Instructions: (pc=0x6d7f7f29)
    0x6d7f7f19: 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 83
    0x6d7f7f29: 12 12 28 00 00 00 00 00 41 44 83 c1 40 84 c0 74
    Stack: [0x35020000,0x35120000), sp=0x3511f9f8, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x37f29]
    >
    Could you help me to fix this error. I am doing exercise and I need eclipse

    I would suggest :
    1. Do you have the concept of CVS ? If not,take backup of your workspace/programs.
    2. Check if JDK has been corrupted,if any suspicion,re-install it.
    3. Later reinstall Eclipse.
    4. Import Programs and check.

  • AutoReplace and loadLanguageXML

    Morning all,
    I'm using the Locale class for multi-language support and
    I've run into a snag. I used addDelayedInstance to bind a dynamic
    text field to a a string ID. Then I changed the langauge setting
    with loadLanguageXML and the text field changes automatically.
    Great! However, if I change the language back to one I already
    loaded then nothing changes. It appears that
    one
    other person has had a similar problem but some dedicated
    Googling has found no solutions.
    Have any of you run into this before?
    Thanks,
    Dave

    Do you mean such similar shortcuts?
    http://ikool.wordpress.com/2008/06/23/jdeveloper-and-eclipse-shortcuts-compared/
    or code templates:
    http://baigsorcl.blogspot.com/2010/04/using-code-templates-in-jdeveloper.html
    NA
    http://nickaiva.blogspot.com
    Edited by: Nick Aiva on Jan 31, 2011 5:16 PM

  • I have just updated to Yosemite, but now I can't get the custom shortkeys to work. In Mavericks I had no problem whatsoever, but now even after googeling and restart no solution. Does anyone have the problem? All the other shortcuts work!

    I have just updated to Yosemite, but now I can't get the custom short-keys to work.
    In Mavericks I had no problem whatsoever, but now even after googeling and restart no solution.
    Does anyone have the problem? All the other shortcuts work!

    Hi Thomas,
    I can confirm the problem you are hitting. The XML test trace does not get recognized at all, and it defaults to Eclipse's basic Open File behaviour. I am not sure if it's because the format definition is missing, or if it's because something prevents the trace type from being recognized. I will open a bug about it.
    Thanks for identifying this issue!
    In the meantime, if you'd like to experiment with XML analyses, you can also take a look at the example at https://github.com/tracecompass/xml-analysis-example .
    Cheers,
    Alex

  • How can I set up breakpoints in eclipse for jsp?

    I saw somebody can set up breakpoints in eclipse for jsp.
    But I can not do that on my eclipse.
    What's the difference?
    Thanks.

    I don't think this had a keyboard shortcut even before (checked in CS6). There's an alternative though.
    1. Create a JSFL file with following code and save it in the commands folder as 'Remove Tween'.
         fl.getDocumentDOM().getTimeline().setFrameProperty('tweenType', 'none');
    2. Now goto Edit Menu > Keyboard Shortcuts..
    3. Search for 'Remove Tween' and assign a keyboard shortcut to it.
    Now everytime you press the assigned key - jsfl script is executed which essentially removes the tween from selected frame. (works for Classic and Shape tween but not Motion Tweens)

  • How to create a c++ shared library (.so) for linux real time (for myRio) with Eclipse to use in LabView?

    I tried already these Tutorials and Advices but I didn't find a solution:
    - http://www.ni.com/tutorial/14625/en/
    - http://www.ni.com/tutorial/14690/en/
    - http://forums.ni.com/t5/LabVIEW/Shared-Library-on-myrio-Linux-Real-time-system/m-p/2842540/
    - http://forums.ni.com/t5/LabVIEW/How-to-create-shared-library-for-linux-real-time-target-in/m-p/28218...
    - and some more
    I want use c++ codes on linux real time. For testing reasons I want to have a function that adds 2 values and gives the result.
    I've done these steps:
    1. writing a c++ file in Eclipse (see screensot 2)
    2. building a shared library (.so) from my c++ project in Eclipse (with Cross GCC)
    3. putting this file on myRio (path: /usr/local/lib/)
    4. creating a VI that calls this library from Labview with a "Call Library Function Node" (see screenshot3)
    5. Setting the properties for the "Call Library Function Node" (see screenshots 4-7)
    After I run this VI i get this error message: LabVIEW:  (Hex 0x627) The function name for the ... node cannot be found in the library. To correct this error, right-click the Call Library Function Node and select Configure from the shortcut menu. Then choose the correct function name. (see screenshot1)
    I've tried a lot things to solve this problem but I couldn't find a solution. Would be very happy if anyone can help me. I guess that I have to edit my c++ code to export my function (symbol). But I have no idea how to make it. I also tried it with a dll file in the same folder but it didn't help.
    Perhaps someone can send an example which works on myRIO.
    Thanks!
    screenshot1
    screenshot2
    screenshot3
    screenshot4
    screenshot5
    screenshot6
    screenshot7

     can see it in the screenshot8 there is a function called "_Z8AddierenddPd" instead of "Addieren". I copied this name to Labview (see screenshot9) and it worked.
    I'm sure that there is a way to compile the shared folder with gcc without decorations (mangling). But I don't know how. If someone has a recommendation I would be very glad!
    Prepend each function declaration that you want to be available without name decoration with
    extern "C" <your function declaration>
    Or if you have multiple functions you want to export you can in the header file where you declare your functions simply use:
    #ifdef __cplusplus
    extern "C" {
    #endif
    <all your function declarations>
    #ifdef __cplusplus
    #endif
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Not able to execute startEclipse.bat file in Eclipse (Oracle utilities SDK)

    In Eclipse installation, i am not able to run "startEclipse.bat" file in this path "C:\SPLSDK\SDK\shortcuts" which comes under Oracle Utilities Software Development Kit 4.0.0.
    once i start installing startEclipse.bat, i get a error message "windows cannot find /eclipse.exe, make sure you typed correctly and try again"
    and how do i find the eclipse.exe on the installables? also in error message it shows backslash "/"eclipse.exe while executing "startEclipse.bat" file.
    jdk and hibernate paths are located in "c:\spl". Is that fine?
    And When I click “eclipse” in this path “C:\SPLSDK\SDK4.0.0.4\eclipse\eclipse-jee-galileo-SR2-win32\eclipse”, I get error "java runtime or jdk should be available in order to run eclipse. and no JVM was found after searching for the folder "C:\SPLSDK\SDK\4.0.0.4\_jvm\bin\javaw.exe" ". I have installed Jdk in “C:\spl\jdk1.6.0_18”. And to install Eclipse, should I change the path of installing jdk to support Eclipse installation?
    what could be the reason?
    Please give me suggession that how to install eclipse?
    Regards
    Vijaya

    Please help. Its urgent.

  • Flat keyboard - no help key - eclipse

    Hi all,
    on eclipse, context-sensitive help is called by "help"-button. And it works fine with a standard mac-keyboard.
    But there's no help-button on the new flat keyboards or macbooks.
    Using AppleShift? doesn't work, creating a new shortcut in eclipse-preferences doesn't work too.
    It seems it has to be the original "help"-button, who's not there.
    The problem is discussed on fdt-board and eclipse-newsgroups, but without a solution.
    Does anyone know how to invoke context sensitive help with a macbook or a flat keyboard on eclipse?
    Or how to "bypass" the help-key to the f1-button in the system?
    thanks

    One last try..

Maybe you are looking for

  • W510 Multi Touch Display Driver NOT installing properly on a fresh Windows 7 Professional Image.

    Hello everyone, this is my first post here and I will make it as short as possible. First, thanks in advance for taking the time to read this and helping me out in any way possible. I have a fairly new W510 machine with a crucial 256GB SSD in it. My

  • Flex ActiveX Control Event is Missing

    Hi, I wrote an ATL CAxDialogImpl based dialog DLL to host a flash activex control. When I launched the DLL dialog box from a command line C# program, I can get all the events sent from the flash activex control to the dialog instance object, e.g. fsc

  • Motion canvas on a second monitor question

    Ok, so after jumping through multiple flaming hoops to get the app store to update motion to 5.0.1 i have a question concerning one of the "improvements" Putting your canvas on a second monitor.  Is there a way to do so WITHOUT the toolbar going with

  • Can't connect wirelessly to C7250 on Mac OS X 10.10.1

    My HP C7250 has a spotty connection. Last week, wireless printing and scanning worked fine, this week I can't connect. The printer does not show up on my router as a connected wireless device thought the LCD screen and a test page per the printer it

  • "hit enter"  does not work at EP7 logon screen

    Hi! We have an EP7 SP11 with a problem: After the user puts his name/password on the logon screen, he hits "enter" key. However the logon screen does not do anything. So he has to use the mouse to click the "log on" button so that he can log into EP.