Tuesday, October 20, 2009

rap eCLIPSE

http://74.125.113.132/search?q=cache:svDuZQuz0lkJ:lomboz.ow2.org/eclipsist/2007/presentations/Jochen_Krause_Eclipse_RAP.pdf+eclipse+RAP]&cd=95&hl=en&ct=clnk&gl=us&client=firefox-a

Sunday, October 18, 2009

http://java.sun.com/products/jfc/tsc/articles/architecture/

Java Applet Tutorials

http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

Pass by value

/* * To change this template, choose Tools Templates * and open the template in the editor. */
/** * * @author vramali1 */public class NewClass { private int i=0; private int j=0; public void bn(NewClass g) { System.out.println(g.i); System.out.println(g.j); g.i=45; g.j=56;
} public static void main(String args[]) { NewClass n=new NewClass(); n.i=1; n.bn(n); System.out.println(n.i); System.out.println(n.j); }}

jBPM

http://www.jorambarrez.be/blog/category/jbpm/

Sybase vs Oracle

http://www.rocket99.com/sybase/syb_vs_ora.html

JPA advantages

Java Persistence API
  • provide a light-weight POJO persistence API for object/relational mappining.
The Java Persistence API incorporates support for many of the features that EJB developers have been asking for, including
  • Support for improved object modeling,
  • Inheritance,
  • Polymorphism,
  • Expanded query language, and
  • Rich metadata for the specification of object/relational mapping.
http://www.ibm.com/developerworks/websphere/library/techarticles/0707_barcia/0707_barcia.html?S_TACT=105AGX10&S_CMP=WASCE#j7

http://java.sun.com/developer/technicalArticles/J2EE/jpa/