User vinaynag - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T01:49:28Z http://stackoverflow.com/feeds/user/148121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1758182/which-java-web-framework-to-choose-for-client-side-and-server-side-validation/1758515#1758515 0 Answer by vinaynag for Which java web framework to choose for client side and server side validation? vinaynag http://stackoverflow.com/users/148121 2009-11-18T19:39:33Z 2009-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#1368232 1 Answer by vinaynag for What is a difference between <? super E> and <? extends E>? vinaynag http://stackoverflow.com/users/148121 2009-09-02T14:56:50Z 2009-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#1345595 0 Answer by vinaynag for Hiding deleted objects vinaynag http://stackoverflow.com/users/148121 2009-08-28T07:51:52Z 2009-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 -1 Answer by vinaynag for Good Programming Twitters vinaynag http://stackoverflow.com/users/148121 2009-08-26T07:01:26Z 2009-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#1332798 1 Answer by vinaynag for How do I get a Java program I installed running? vinaynag http://stackoverflow.com/users/148121 2009-08-26T06:52:45Z 2009-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#1278985 0 Answer by vinaynag for Should I set the initial java String values from null to ""? vinaynag http://stackoverflow.com/users/148121 2009-08-14T17:02:55Z 2009-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#1278972 0 Answer by vinaynag for Why i should use ActiveMQ for send emails ? vinaynag http://stackoverflow.com/users/148121 2009-08-14T16:58:37Z 2009-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#1209647 0 Answer by vinaynag for Java Wait-For-Thread Question vinaynag http://stackoverflow.com/users/148121 2009-07-30T22:00:44Z 2009-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#1209567 2 Answer by vinaynag for Visualizing Data in Java vinaynag http://stackoverflow.com/users/148121 2009-07-30T21:42:04Z 2009-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#1332826 Comment by vinaynag on Good Programming Twitters vinaynag http://stackoverflow.com/users/148121 2009-08-28T08:01:35Z 2009-08-28T08:01:35Z Okay. May be you don't like all of them. Follow catswhocode, codepo8, mager. They are all good.