bugs

Jan 20th, 2012No Comments

hello,

i am not clear with the errors like  boolean cannot be dereferenced,int cannot be dereferenced….so on.

n.a(a).cancel();

how to fix the bux for the above which is showing boolean cannot be dereferenced.

 

VN:F [1.9.10_1130]
Rating: 10.0/10 (1 vote cast)
VN:F [1.9.10_1130]
Rating: 0 (from 0 votes)

j2me architecture

Jan 19th, 2012No Comments
VN:F [1.9.10_1130]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.10_1130]
Rating: 0 (from 0 votes)

Creating Tag in Git

Dec 13th, 2011No Comments

There are 2 steps to create a tag in Git

Creating Annotated tags

  1. -a refers to tagname
    -m refers to tag message

    $ git tag -a v1.2 -m 'version 1.2'

    as the above command is executed the tag will be created in you local system .

  2. You need to push the tag to Git project repository
    $ git push --tags

Creating a Simple tag

  1. $ git tag tagname 
VN:F [1.9.10_1130]
Rating: 9.5/10 (2 votes cast)
VN:F [1.9.10_1130]
Rating: 0 (from 0 votes)

get session into action class in struts 2.x

Nov 25th, 2011No Comments

JSPs contain implicit session object to use in the jsp pages, when an action in invoked in struts we need to get ‘session ‘ into the action class, we can do this by implementing “SessionAware” interface. Eclipse  will ask you to implement an unimplemented  method click on that meesage and eclipse will create the method for you called “public void setSession(Map<String, Object> arg0){//TODO}”

(more…)

VN:F [1.9.10_1130]
Rating: 8.3/10 (4 votes cast)
VN:F [1.9.10_1130]
Rating: 0 (from 0 votes)
Page 1 of 712345»...Last »