User Riduidel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T00:50:39Zhttp://stackoverflow.com/feeds/user/15619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860552/java-retrieving-amount-of-types-in-list/1860679#18606790Answer by Riduidel for Java - Retrieving amount of types in listRiduidel2009-12-07T15:25:40Z2009-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-results0use hudson to get remote tests resultsRiduidel2009-11-26T16:27:40Z2009-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#18600090Answer by Riduidel for use hudson to get remote tests resultsRiduidel2009-12-07T13:33:43Z2009-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#16685750Answer by Riduidel for Java TokenField like Cocoa's?Riduidel2009-11-03T16:43:59Z2009-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#2183560Answer by Riduidel for How do I change JPanel inside a JFrame on the fly?Riduidel2008-10-20T13:09:15Z2008-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#821084Answer by Riduidel for Best technology for adding plugin support to a J2SE application?Riduidel2008-09-17T11:17:13Z2008-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#485630Comment by Riduidel on How could I implement autocompletion using Swing?Riduidel2009-11-04T08:42:35Z2009-11-04T08:42:35ZNotice 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&artifactId=swingx&version=0.9.5-2&tab=VERSIONS#tabs" rel="nofollow">mvnbrowser.com/artifact-details.html?groupId=org.…</a> indicates.