Core Java Technologies Tech TipsTips for using core Java SE APIsAdding Drop Support to JTree- June 30, 2007 The text components offer built-in drop support, as does the JColorChooser component, but adding drop support to any of the other Swing components -- like JList, JTable, or JTree -- requires a little bit of extra work.http://blogs.sun.com/CoreJavaTechTips/entry/adding_drop_support_to_jtree Cookie Handling in Java SE 6- June 25, 2007 A quick look back to the J2SE 5.0 API brings you right to the abstract CookieHandler class but with no real implementation, no storage mechanism, no storage policy, and nothing to store. Jump ahead to Java SE 6, and the CookieManager class offers just such an implementation of CookieHandler. CookieStore is the storage mechanism, and CookiePolicy offers a policy for accepting or rejecting cookies. Lastly, HttpCookie is the object to store.http://blogs.sun.com/CoreJavaTechTips/entry/cookie_handling_in_java_se |