Jean-Michel Garcia

GWT – JavaEE – Web Developper

Talend Open Studio in fullscreen

Posted by Jean-Michel GARCIA mars - 1 - 2013 0 Comment
FullscreenON

I’ve being used Talend Open Studio for a while now. Whereas this program is just a fantastic ETL program, it lacks of fullscreen support (just as Eclipse does). I’ve just found this simple yet powerful plugin callend Eclipse fullscreen that also work for RCP based applications. How to install Download the plugin here Simple extract the .jar file to the Talend directory plugin folder (mine is : C:\Program Files\Talend 5.2.1\TOS_DI-Win32-r95165-V5.2.1\plugins) How  [ Read More ]

Using java keyword when declaring an enumeration

Posted by Jean-Michel GARCIA juillet - 30 - 2012 0 Comment
imgarticle

Once, I had this particular case where I needed to have an enumeration with the double java keyword. I also wanted that a call on this enumeration would return me the « double » String. If you try to type this : public enum Style { dotted, dashed, solid, double, groove, ridge, inset, outset; } You will get an error from the compiler saying that you cannot use the double keyword. Here  [ Read More ]

A very nice CSS3 Selector

Posted by Jean-Michel GARCIA juillet - 30 - 2012 0 Comment
css_selector_declaration

This is a tiny small article (more like a reminder) to show you a great CSS3 selector Match every p element inside any container that have a particular attribute : Here is a small example. I want my rule to match the p element inside the div with customAttribute= »1″ Content in a « p » block inside the div Content in a « p » block outside the div Content in a « p » block  [ Read More ]

GWT / SmartGWT in a Liferay portlet

Posted by Jean-Michel GARCIA mars - 4 - 2012 8 Comments
Liferay logo

Embedding a GWT/SmartGWT application in a Java Portlet using Maven. For a research project, I was once able to embed a GWT application using the SmartGWT framework in a Java Portlet. So, as I had faced some issues and problems, I’ve decided to post a small tutorial with guidelines to help people trying to achieve the same thing. Little precisions: The portlet was following the JSR 268 GWT version 2.3  [ Read More ]