Thursday, November 14, 2013

Ampersand (&) is not shown on tooltips in Eclipse

To show '&' as part of tooltip information, You need to follow the rules of doubling an ampersand when you want a single ampersand for tool tip text.  All platforms follow this rule and strip out the underscore.

Example:
String tooltip = "Hello & World"; => Hello && World"

Look at the code below.

import org.eclipse.jface.window.DefaultToolTip;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Event;


public class MyToolTip extends DefaultToolTip {

public MyToolTip(Control control) {
super(control);
}

@Override
protected String getText(Event event) {
int x = event.x;
int y = event.y;

String tooltip = "Hello & World"; //only for test
//TODO: build tooltip info here.
if (tooltip.contains("&")) {
tooltip = tooltip.replace("&", "&&"); //without double ampersand replacement tooltip info will be shown as 'Hello _World' by replacing & by _.
}
return tooltip;
}
}

Wednesday, November 13, 2013

Cloud Computing - IAAS,PAAS and SAAS


http://www.rackspace.com/knowledge_center/whitepaper/understanding-the-cloud-computing-stack-saas-paas-iaas

In simple terms:
SaaS (Software as a Serviceapplications are designed for end-users, delivered over the web 
PaaS (Platform as a Service) is the set of tools and services designed to make coding and deploying those applications quick and efficient 
IaaS (Instrastructure as a Service) is the hardware and software that powers it all – servers, storage, networks, operating systems

Friday, November 8, 2013

New to JavaScript - Tryout Google chrome + F12 = JavaScript Console

If you are a beginner, and want to try out some Java script code , you can think of Google Java script console. This comes with Google chrome browser.


Just press F12 to launch in js console.

New to Mac - Shortcut key for Sleep

To do this, head to System Preferences > Security & Privacy > General. Check the box next to “Require Password”.

Find the screenshot below for this.




Now, you can make use of below keys.
Command + Option + Eject (On the top right corner button in macBook pro).
Command + Option + Power (Power button).


I am a beginner for Mac system, so I am trying to post my learnings and experience with it!!!

Wednesday, November 6, 2013

SAP JCo libraries for Mac OS

SAP JCo(Java Connectors) libraries would be required to connect to the SAP server.  Basically it will have sap JCo ‘jar’ file as well as sap JCo native library file.
For example. If you are connecting using JCo3 jars, below would be required based on the operating system.
§  sapjco3.jar: JCo Java runtime libraries – This would be same for 32 bit and 64 bit systems
§  [prefix]sapjco3.[extension]: JNI runtime library that contains JCo native code. The target operating system determines the prefix and file name extension:
§  Windows: sapjco3.dll
§  MacOS: libsapjco3.jnilib

Note: Ensure that the libraries you use are correct for your 32-bit or 64-bit system.
.


Navigation view scrollbar is not visible in Eclipse Mac OS but visible in windows OS

Have you ever encountered an issue with scrollbars in eclipse, especially in navigation views or application views, which is visible in windows or but does not appear in Mac OS system.

Then reason could be with the Mac system preferences. Please follow below steps to enable the scrollbar in Mac.

1. Go to Mac Menu( Apple icon), you will find this in the top left corner of the system.
2. Click on 'System Preferences'.
3. Click on 'General' item from the ‘Personal’ section.
4. You can find 'Show scroll bars’ section.
5. Select ' Always' radio button.

This will enable the scrollbar in the navigation view, without this option also scrollbar will be there, just that you will not be able to realize that there is a scrollbar unless you start dragging in navigation view.


Please find the screenshot for system preferences configuration.


New to Mac - Print screen shorcuts

Command+Shift+3: Takes a screenshot of the full screen (or screens if multiple monitors), and save it as a file to the desktop

Command+Shift+4: Brings up a selection box so you can specify an area to take a screenshot of, then save it as a file to the desktop

Command+Shift+4, then spacebar, then click a window: Takes a screenshot of a window only and saves it as a file to the deskto