skip to main
|
skip to sidebar
knowledgebase
Thursday, February 14, 2008
Dynamo doStartService()
ATGDynamo:
This method will be called automatically at the time of component load..
" public void doStartService() throws ServiceException "
where as
" public void doStartService(<argtype> <argname>) "
wont..
Thursday, February 7, 2008
Java Trick : null in string comparison
String str = "null";
if ( str == "null") {
System.out.println(" String value is 'null');
} else {
System.out.println(" String value is not 'null');
}
Output: " String value
not
'null' "
if ( "null".equals(str)) {
System.out.println(" String value is 'null');
} else {
System.out.println(" String value is not 'null');
}
Output: " String value 'null' "
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
Blog Archive
►
2014
(2)
►
February
(2)
►
2011
(1)
►
January
(1)
►
2010
(2)
►
September
(1)
►
January
(1)
►
2009
(3)
►
August
(1)
►
February
(1)
►
January
(1)
▼
2008
(12)
►
October
(1)
►
July
(1)
►
June
(1)
►
April
(1)
►
March
(1)
▼
February
(2)
Dynamo doStartService()
Java Trick : null in string comparison
►
January
(5)
About Me
SY
View my complete profile