User Riduidel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T00:50:39Z http://stackoverflow.com/feeds/user/15619 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860552/java-retrieving-amount-of-types-in-list/1860679#1860679 0 Answer by Riduidel for Java - Retrieving amount of types in list Riduidel 2009-12-07T15:25:40Z 2009-12-07T15:25:40Z <p>Besides all those solutions (I have a weakness for the Collections.Frequency call), i would recommend you to take a look at <a href="http://code.google.com/p/google-collections/" rel="nofollow">google collections</a>, and particularly to [Collections2.transform][2], which could give you a live view on items.</p> <p>[2]: <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Collections2.html#transform%28java.util.Collection" rel="nofollow">http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Collections2.html#transform%28java.util.Collection</a>, com.google.common.base.Function)</p> http://stackoverflow.com/questions/1804627/use-hudson-to-get-remote-tests-results 0 use hudson to get remote tests results Riduidel 2009-11-26T16:27:40Z 2009-12-07T13:33:43Z <p>Hi all, I've a server running a proprietary language on which I'm able to run "unit tests" in this language. I cannot install a Hudson slave on this machine, but would like to have these tests results appearing in a job of hudson (to have at least a monitoring of the code quality for this server code). I'm currently trying to use web services to get the results and store them in Hudson workspace, but I do fear it is not the right solution. What solutions can you advice me ?</p> http://stackoverflow.com/questions/1804627/use-hudson-to-get-remote-tests-results/1860009#1860009 0 Answer by Riduidel for use hudson to get remote tests results Riduidel 2009-12-07T13:33:43Z 2009-12-07T13:33:43Z <p>I finally have gotten through the web services path, although it was not easy. There are some steps in this path</p> <ol> <li>I created a maven mojo with groovy (see <a href="http://docs.codehaus.org/display/GMAVEN/Implementing+Maven+Plugins" rel="nofollow">GMaven</a> for more infos) which, using <a href="http://groovy.codehaus.org/GroovyWS" rel="nofollow">groovyws</a>, called a web service that, from tests results, creates the <a href="http://stackoverflow.com/questions/442556/spec-for-junit-xml-output/825207#825207">junit report</a>.</li> <li>Armed with this mojo, I created a maven project that called the web service and stores the junit.xml file in an output folder</li> <li>Finally, i created in hudson a maven job for this project and called it regularly. Thanks to junit reporting integration in maven builds, my tests results are visible as a graph in Hudson and user can drill down to failing tests.</li> </ol> http://stackoverflow.com/questions/1604685/java-tokenfield-like-cocoas/1668575#1668575 0 Answer by Riduidel for Java TokenField like Cocoa's? Riduidel 2009-11-03T16:43:59Z 2009-11-03T16:43:59Z <p>Although it does not seems to be implemented yet, you should take a look at <a href="http://code.google.com/p/macwidgets/" rel="nofollow">macwidgets</a>, and eventually ask for implementation of your widget.</p> http://stackoverflow.com/questions/218155/how-do-i-change-jpanel-inside-a-jframe-on-the-fly/218356#218356 0 Answer by Riduidel for How do I change JPanel inside a JFrame on the fly? Riduidel 2008-10-20T13:09:15Z 2008-10-20T13:09:15Z <p>I suggest you to add both panel at frame creation, then change the visible panel by calling setVisible(true/false) on both. When calling setVisible, the parent will be notified and asked to repaint itself.</p> http://stackoverflow.com/questions/81495/best-technology-for-adding-plugin-support-to-a-j2se-application/82108#82108 4 Answer by Riduidel for Best technology for adding plugin support to a J2SE application? Riduidel 2008-09-17T11:17:13Z 2008-09-17T11:17:13Z <p>After many tries for plugin-based Java architectures (what is precisely what you seem to look for), I finally found <a href="http://code.google.com/p/jspf/" rel="nofollow">JSPF</a> to be the best solution for Java5 code. it do not have the huge needs of OSGI like solutions, but is instead rather easy to use.</p> http://stackoverflow.com/questions/485530/how-could-i-implement-autocompletion-using-swing/485630#485630 Comment by Riduidel on How could I implement autocompletion using Swing? Riduidel 2009-11-04T08:42:35Z 2009-11-04T08:42:35Z Notice that the swinglabs site now appears empty. However, there is <a href="https://swinglabs.dev.java.net" rel="nofollow">swinglabs.dev.java.net</a>, which gives access to the sources. Furthermore, the project seems to be avaiable via maven, like <a href="http://www.mvnbrowser.com/artifact-details.html?groupId=org.swinglabs&amp;artifactId=swingx&amp;version=0.9.5-2&amp;tab=VERSIONS#tabs" rel="nofollow">mvnbrowser.com/artifact-details.html?groupId=org.&hellip;</a> indicates.