User vinaynag - Stack Overflowmost recent 30 from stackoverflow.com2010-03-22T01:49:28Zhttp://stackoverflow.com/feeds/user/148121http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1758182/which-java-web-framework-to-choose-for-client-side-and-server-side-validation/1758515#17585150Answer by vinaynag for Which java web framework to choose for client side and server side validation?vinaynaghttp://stackoverflow.com/users/1481212009-11-18T19:39:33Z2009-11-18T19:39:33Z<p>I would say Spring framework is the best. We have been using Spring - Hibernate combination for a while now.</p>
http://stackoverflow.com/questions/1368166/what-is-a-difference-between-super-e-and-extends-e/1368232#13682321Answer by vinaynag for What is a difference between <? super E> and <? extends E>?vinaynaghttp://stackoverflow.com/users/1481212009-09-02T14:56:50Z2009-09-02T14:56:50Z<p>A wildcard with an upper bound looks like " ? extends Type " and stands for the family of all types that are subtypes of Type , type Type being included. Type is called the upper bound . </p>
<p>A wildcard with a lower bound looks like " ? super Type " and stands for the family of all types that are supertypes of Type , type Type being included. Type is called the lower bound .</p>
http://stackoverflow.com/questions/1305030/hiding-deleted-objects/1345595#13455950Answer by vinaynag for Hiding deleted objectsvinaynaghttp://stackoverflow.com/users/1481212009-08-28T07:51:52Z2009-08-28T07:51:52Z<p>The flag to delete should be a part of the Template Class itself. That way all the Objects that you create have a way to be flagged as alive or deleted. The marking of the Object to be deleted, should go higher up to the base class.</p>
http://stackoverflow.com/questions/190921/good-programming-twitters/1332826#1332826-1Answer by vinaynag for Good Programming Twittersvinaynaghttp://stackoverflow.com/users/1481212009-08-26T07:01:26Z2009-08-26T07:01:26Z<p>100 technology experts on Twitter</p>
<p><a href="http://blogs.zdnet.com/BTL/?p=22754" rel="nofollow">http://blogs.zdnet.com/BTL/?p=22754</a></p>
http://stackoverflow.com/questions/1332582/how-do-i-get-a-java-program-i-installed-running/1332798#13327981Answer by vinaynag for How do I get a Java program I installed running?vinaynaghttp://stackoverflow.com/users/1481212009-08-26T06:52:45Z2009-08-26T06:52:45Z<p>Both Oscar Reyes and Crimson are right.
I cannot vote up the answer since I do not have enough reputation</p>
http://stackoverflow.com/questions/1277965/should-i-set-the-initial-java-string-values-from-null-to/1278985#12789850Answer by vinaynag for Should I set the initial java String values from null to ""?vinaynaghttp://stackoverflow.com/users/1481212009-08-14T17:02:55Z2009-08-14T17:02:55Z<p>Null is better, that is why they are called unchecked exceptions {Null pointer exception}. When the exception is thrown, it tells you that you have to initialize it to some non null value before calling any methods on it. </p>
<p>If you do </p>
<p>private String field1 = "";</p>
<p>You are trying to supress the error. It is hard to find the bug, later.</p>
http://stackoverflow.com/questions/1277992/why-i-should-use-activemq-for-send-emails/1278972#12789720Answer by vinaynag for Why i should use ActiveMQ for send emails ?vinaynaghttp://stackoverflow.com/users/1481212009-08-14T16:58:37Z2009-08-14T16:58:37Z<p>Active MQ has nothing to do with sending e-mails. Active MQ is used for sending messages over the network. While for you to send the e-mails, all you need is the smtp host server details.</p>
http://stackoverflow.com/questions/1209545/java-wait-for-thread-question/1209647#12096470Answer by vinaynag for Java Wait-For-Thread Questionvinaynaghttp://stackoverflow.com/users/1481212009-07-30T22:00:44Z2009-07-30T22:00:44Z<p>You could use t1.yield() to pause the thread as long as you the condition holds true.</p>
http://stackoverflow.com/questions/1208627/visualizing-data-in-java/1209567#12095672Answer by vinaynag for Visualizing Data in Javavinaynaghttp://stackoverflow.com/users/1481212009-07-30T21:42:04Z2009-07-30T21:42:04Z<p>JFreeChart is a good Option. I have tried it, and is easy to set up with Eclipse too. BIRT is also nice, but if you are using it for reporting that is.</p>
http://stackoverflow.com/questions/190921/good-programming-twitters/1332826#1332826Comment by vinaynag on Good Programming Twittersvinaynaghttp://stackoverflow.com/users/1481212009-08-28T08:01:35Z2009-08-28T08:01:35ZOkay. May be you don't like all of them. Follow catswhocode, codepo8, mager. They are all good.