Dear All, We have a requirement for Application Developers (JAVA) The required skill sets are: · Development of Systems and Web-enabled Applications · Good...
Good tips, Migs! ;) ... most ... if ... method ... never ... in ... catch ... console ... acceptable ... tend to ... future ... you ... your ... keeping a ... ...
Where can I get discounted/cheap vouchers for SCWCD and SCJD. Ang taas kasi ng mark-up sa SunPhil! Can you get a discount if a group of you buy at the same...
Code Conventions for the JavaServer Pages Version 1.x Language http://developer.java.sun.com/developer/technicalArticles/javaserverpages/code_convention/...
Reminder from the Calendar of pinoyjug http://groups.yahoo.com/group/pinoyjug/cal SCWCD SIG meeting Wednesday March 5, 2003 8:00 pm - 11:00 pm (This event does...
Yahoo! Reminder
reminders@...
Mar 2, 2003 11:55 am
4236
Hello, Though it's my practice to use Iterator in my collection, I still want to know why should I keep on using it? In using the for loop, I don't have to ...
Let's say you're iterating over a List. If your List is an ArrayList, then an Iterator gives no benefit over a for loop calling List.get(), because iterating...
... To add, the Iterator for List's is a very small object. (read java/util/ArrayList.java from src.zip if you want!). Remember the mantra: "Premature...
I would love it if you could check out: http://www.kalixia.com/snipsnap/mparaz I'm using it as a notebook of Java ideas, to keep my thoughts organized. :)...
This idea came upon me while presenting at the MITC last week. What's the better way of implementing a read-only array? as a List? or as an encapsulating...
http://www.artima.com/commentary/langtool.html Use the Best Tool for the Job Put Both a Scripting and Systems Language in Your Toolbox by Bill Venners This...
well i was thinking of somethin that also does the conversion from class diagram to "ER diagram" as well. some db tools i know has this feature.. the ability...
Hi, Has anyone here implemented a jsp tree? I've seen an implementation in sourceforge but we're still figuring it out. Mao -- This message has been scanned...
What do you need to compile tag handlers? Do you need J2EE sdk for that? ... From: Maurice Ronan To: pinoyjug@yahoogroups.com Sent: Tuesday, March 04, 2003...
Christian Crystal <banal_na_bato@...> writes: Advantages: - They have neat interfaces. - They're well-defined and documented. - They're persistent. -...
Hello, May I know which is the better way of populating a helper/container bean: (esp. when used in BMP EJB SessionBean) a) through a constructor name =...
thanks, migs and calen! follow-up question: since we are only using ArrayList and Vector, no LinkedList, okay lang ba For Loop? I'm after for the performance...
... "life is like a box of chocolates" -forest gump eto modification ko.... "life: heaven is like a big registry where all of us get binded to eventually,...
Dear Valued Customers, We are pleased to inform you that CyberJ Resources, Inc., a wholly owned Filipino corporation pioneering in Java technologies, is...
I read src.zip to get a clue to your question. (Migs and Jeff Gutierrez are such a good influences to me ;). ) I'm actually quite shocked at what I found. ...
Yeah got it. I was trying to compile it the old way. Anyway i used an IDE to compile it properly. Thanks for the info! Thanks to Jenny too!. Mao ... From:...
... That won't work. You should not call EJB ctors; only the container is contractually allowed to create instances of an EJB. Alternatively, you can do: ...
very nice explanation, calen! i can now see migz in you. :D well, if your research is right that iterator is somehow inefficient, i'll start using the for...