User MrWiggles - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T16:38:04Zhttp://stackoverflow.com/feeds/user/51577http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318818/are-the-swing-layoutmanagers-adequate/416082#4160820Answer by MrWiggles for Are the Swing LayoutManagers adequate?MrWiggles2009-01-06T10:47:02Z2009-11-20T01:16:08Z<p>I haven't done any Swing work for a couple of years now, but the layout managers are one of the things I miss the most when trying to write web pages. We did alot of work with GridBagLayout especially for the more complicated dialogs and once mastered was relatively easy to use - when <em>writing</em> the screens. The pain always came when having to modify the GUI and what on the surface would seem simple would take a stupid amount of time to get done.</p>
<p>I was introduced to <a href="https://abeille.dev.java.net/" rel="nofollow">Abeille</a>, a GUI form designing tool, and while not perfect enables you to build screens in a matter of minutes with professional looking results, especially when combining it with JGoodies. It includes a code generator or would output to binary format (I think it included XML later on) which was my preferred option. The code to "build" the screen then looked like this:</p>
<pre><code>FormPanel panel = new FormPanel( "myDialog.jfrm" );
add(panel);
</code></pre>
<p>You can hook into the controls on the form for action listeners and when employing an MVC pattern leads to some really clean view code. The biggest benefit comes when making changes tho, as the form can just be loaded into the editor, changes quickly made and saved with no alteration to the code.</p>
<p>(I am in no way associated with Abeille, just a big fan)</p>
http://stackoverflow.com/questions/1553245/accessing-a-queue-from-standalone-code/1553857#15538571Answer by MrWiggles for Accessing a Queue from standalone codeMrWiggles2009-10-12T10:41:10Z2009-10-12T10:41:10Z<p>You may want to check which JARs you have on the classpath. A cursory glance is indicating a mismatch somewhere. This line:</p>
<pre><code>java.lang.NoSuchMethodError: com.ibm.ejs.ras.TraceComponent: method isAnyTracingEnabled()Z not found
</code></pre>
<p>Is telling you that the <code>com.ibm.websphere.pmi.reqmetrics.PmiReqMetrics.register</code> method is trying to call the <code>isAnyTracingElementEnabled</code> method on <code>TraceComponent</code>, but <code>TraceComponent</code> doesn't have that method. I'm guessing that the JAR that has <code>TraceComponent</code> in is the wrong one.</p>
http://stackoverflow.com/questions/554641/powermock-slows-down-test-startup-on-eclipse-fedora-10-when-on-ntfs-partition0Powermock Slows Down Test Startup on Eclipse/Fedora 10 when on NTFS partitionMrWiggles2009-02-16T21:30:40Z2009-09-11T09:21:29Z
<p>I've just started having a proper play with Powermock and noticed that it slows down test startup immensely. A quick look at top while it was running shows that mount.nfts-3g was taking up most of the CPU. I moved Eclipse and my source directory to ext3 partitions to see if that was a problem and the tests now startup quicker but there's still a noticeable delay. Is this normal with Powermock or am I missing something obvious?</p>
http://stackoverflow.com/questions/1392744/how-do-i-configure-autoformatting-in-eclipse/1392806#13928064Answer by MrWiggles for How do I configure autoformatting in Eclipse?MrWiggles2009-09-08T08:53:23Z2009-09-08T08:53:23Z<p>Go to "Windows" -> "Preferences", and in the options table select "Java" -> "Code Style" -> "Formatter", then configure to your hearts content.</p>
<p>For future reference, in the preferences menu you can just type in a search term to find all options for that term - so just going onto the preferences menu and typing "format" will show you all options</p>
http://stackoverflow.com/questions/1243700/are-static-anonymous-classes-definitely-wrong-in-java/1243734#12437344Answer by MrWiggles for Are static anonymous classes definitely wrong in Java?MrWiggles2009-08-07T09:08:42Z2009-08-07T09:08:42Z<p>Like anything in any language you should just consider <em>why</em> you're doing it. If you've got alot of these instances then I'd question the design decisions, but it doesn't necessarily means it's a pattern that should <em>never</em> be followed.</p>
<p>And of course, always consider the testability of the class and whether you can provide a test double if the need arises</p>
http://stackoverflow.com/questions/1222275/java-default-form-action-or-button/1222416#12224160Answer by MrWiggles for Java default form action or buttonMrWiggles2009-08-03T13:39:45Z2009-08-03T13:39:45Z<p>IIRC, adding an ActionListener to the JTextField will provide the functionality you want</p>
<p><em>quick google later...</em></p>
<p>Yep - and this appears to be the recommended way by Sun, as shown in the <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/textfield.html" rel="nofollow">text field trail...</a></p>
http://stackoverflow.com/questions/1221353/java-concurrency-making-webservice-access-threadsafe/1221384#12213840Answer by MrWiggles for Java concurrency : Making webservice access threadsafeMrWiggles2009-08-03T09:21:06Z2009-08-03T09:21:06Z<p>Is UserWebService one of your classes? If so, I think I'd change the method signature to:</p>
<pre><code>public CustomerDTO getCustomer()
{
CustomerDTO customer = service.getCustomerFromSessionID(sessionString);
}
</code></pre>
<p>And not have your UserWebService maintain state, that way it will be inherently thread-safe</p>
http://stackoverflow.com/questions/1199211/java-webstart-with-parameters/1199295#11992951Answer by MrWiggles for Java Webstart with parametersMrWiggles2009-07-29T10:34:13Z2009-07-29T10:34:13Z<p>Yeah you can, the following shows an example:</p>
<pre><code><application-desc main-class="my.main.class">
<argument>-user=bob</argument>
<argument>-pass=8jkaiuasu</argument>
</application>
</code></pre>
<p>Showing you passing the arguments "-user=bob" and "-pass=8jkaiuasu" to the application. Arguments are picked up in the standard way.</p>
http://stackoverflow.com/questions/1171264/ant-junit-noclassdeffounderror/1171277#11712770Answer by MrWiggles for Ant + JUnit: NoClassDefFoundErrorMrWiggles2009-07-23T11:59:59Z2009-07-23T11:59:59Z<p>JUnit 4.5 includes Hamcrest as part of its matching system. You'll want to ensure you've got that JAR file on your classpath too</p>
http://stackoverflow.com/questions/1108938/how-to-have-eclipse-jee-automatically-generate-the-exploded-war-for-a-web-project/1109315#11093150Answer by MrWiggles for How to have Eclipse JEE automatically generate the exploded WAR for a web project?MrWiggles2009-07-10T12:45:43Z2009-07-10T12:45:43Z<p>You should be able to do this with "File" -> "Export", scroll down to "Web" -> "WAR File" and follow the instructions</p>
http://stackoverflow.com/questions/1103941/problem-with-observer-pattern-and-generics-in-java/1103972#11039725Answer by MrWiggles for Problem with Observer Pattern and generics in JavaMrWiggles2009-07-09T13:41:56Z2009-07-09T13:41:56Z<p>Change your _observers definition to this:</p>
<pre><code>private List<Observer<? extends Observable<U>, U>> _observers =
new ArrayList<Observer<? extends Observable<U>, U>>();
</code></pre>
<p>If you want to allow sublclasses you need to specify this in the declaration, not just in the place you're using it</p>
http://stackoverflow.com/questions/1092490/auto-generate-stub-methods-that-throw-in-eclipse/1092553#10925534Answer by MrWiggles for Auto-generate stub methods that throw in eclipseMrWiggles2009-07-07T14:05:06Z2009-07-07T14:05:06Z<p>Go to Windows -> Preferences -> Java -> Code Style -> Code Templates. On the right you'll see "Comments" and "Code". Expand "Code" and the one you're looking for is "Code in created function stubs". Click "Edit..." and put whatever you want in there.</p>
http://stackoverflow.com/questions/1091973/javas-equivalent-to-nets-autoresetevent/1092426#10924260Answer by MrWiggles for Java's equivalent to .Net's AutoResetEvent?MrWiggles2009-07-07T13:43:48Z2009-07-07T13:43:48Z<p>I believe what you're looking for is either a CyclicBarrier or a CountDownLatch.</p>
http://stackoverflow.com/questions/1087317/do-setup-teardown-hurt-test-maintainability/1087483#10874832Answer by MrWiggles for Do setup/teardown hurt test maintainability?MrWiggles2009-07-06T15:03:12Z2009-07-06T15:03:12Z<p>I agree with everything Joseph has to say, especially the part about tearDown being a sign of writing integration tests (and 99% of the time is what I've used it for), but in addition to that I'd say that the use of setup is a good indicator of when tests should be logically grouped together and when they should be split into multiple test classes.</p>
<p>I have no problem with large setup methods when applying tests to legacy code, but the setup should be common to <em>every test in the suite</em>. When you find yourself having the setup method really doing multiple bits of setup, then it's time to split your tests into multiple cases.</p>
<p>Following the examples in <a href="http://www.google.co.uk/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fwww.amazon.co.uk%2FTest-Driven-Acceptance-Java-Developers%2Fdp%2F1932394850&ei=%5FRFSSrzNO4%5FQjAfwmcS3BQ&usg=AFQjCNFWA-PCKRoKQWO4UzOmhDCBhWT1-g&sig2=gI14qGmfxRDKlSpZmSNZWg" rel="nofollow">"Test Driven"</a>, the setup method comes about <em>from</em> removing duplication in the test cases.</p>
http://stackoverflow.com/questions/1079693/how-do-you-extract-a-jar-in-a-unix-filesystem-with-a-single-command-and-specify-i/1079726#10797266Answer by MrWiggles for How do you extract a JAR in a UNIX filesystem with a single command and specify its target directory using the JAR command?MrWiggles2009-07-03T14:56:40Z2009-07-03T15:56:38Z<p>I don't think the jar tool supports this natively, but you can just unzip a JAR file with "unzip" and specify the output directory with that with the "-d" option, so something like:</p>
<pre><code>$ unzip -d /home/foo/bar/baz /home/foo/bar/Portal.ear Binaries.war
</code></pre>
http://stackoverflow.com/questions/1073203/java-net-connectexception-connection-refused-when-socketchannel-open-is-invoked/1073304#10733040Answer by MrWiggles for java.net.ConnectException: Connection refused when SocketChannel.open is invokedMrWiggles2009-07-02T09:09:19Z2009-07-02T09:09:19Z<p>The "Connection refused" message is what you'll receive when there is no process listening on your specified port (19015). It looks like you're trying to connect to a service that isn't there. netstat is even telling you that the port isn't in use!</p>
http://stackoverflow.com/questions/427750/using-powermock-or-how-much-do-you-let-your-tests-affect-your-design0Using PowerMock or How much do you let your tests affect your design?MrWiggles2009-01-09T11:28:54Z2009-06-29T01:32:16Z
<p>I've been a fan of EasyMock for many years now, and thanks to SO I came across references to PowerMock and it's ability to mock Constructors and static methods, both of which cause problems when retrofitting tests to a legacy codebase. </p>
<p>Obviously one of the huge benefits of unit testing (and TDD) is the way it leads to (forces?) a much cleaner design, and it seems to me that the introduction of PowerMock may detract from that. I would see this mostly manifesting itself as:</p>
<ol>
<li>Going back to initialising collaborators rather than injecting them</li>
<li>Using statics rather than making the method be owned by a collaborator</li>
</ol>
<p>In addition to this, something doesn't quite sit right with me about my code being bytecode manipulated for the test. I can't really give a concrete reason for this, just that it makes me feel a little uneasy as it's just for the test and not for production.</p>
<p>At my current gig we're really pushing for the unit tests as a way for people to improve their coding practices and it feels like introducing PowerMock into the equation may let people skip that step somewhat and so I'm loathe to start using it. Having said that, I can really see where making use of it can cut down on the amount of refactoring that needs to be done to <em>start</em> testing a class.</p>
<p>I guess my question is, what are peoples experiences of using PowerMock (or any other similar library) for these features, would you make use of them and how much overall do you want your tests influencing your design?</p>
http://stackoverflow.com/questions/1043872/are-there-any-built-in-methods-in-java-to-increase-font-size/1044001#10440013Answer by MrWiggles for Are there any built-in methods in Java to increase Font size?MrWiggles2009-06-25T13:40:27Z2009-06-25T13:40:27Z<p>You can derive a new Font with a different size by using the following:</p>
<pre><code>Font original = // some font
Font bigger = original.deriveFont(newSize);
</code></pre>
<p>Where newSize is either a float or an int. This is well documented in the JavaDoc for Font as other people have pointed out</p>
http://stackoverflow.com/questions/1017008/mixing-parameterized-query-and-sub-query-on-insert0Mixing Parameterized Query and Sub-query on InsertMrWiggles2009-06-19T09:06:06Z2009-06-19T09:14:44Z
<p>I have a colleague who wants to attempt the following query:</p>
<pre><code>INSERT INTO table (ColumnA, ColumnB, ColumnC)
VALUES (?, (SELECT Id FROM ColumnD WHERE x=y), ?)
</code></pre>
<p>Sybase complains about this as it does not seem to allow subqueries in the VALUES portion of the query. Does anyone know of a way around this problem?</p>
http://stackoverflow.com/questions/1007933/image-not-displaying-in-jtable-java-swing/1008021#10080211Answer by MrWiggles for Image not displaying in JTable (Java Swing)MrWiggles2009-06-17T16:02:31Z2009-06-17T16:02:31Z<p>This is the correct way to do it, but your jpg isn't being found correctly. Change your code to look it up as a resource URL and it should find it correctly. The following change worked perfectly on my machine:</p>
<pre><code> jTable1.setModel(new imageTableModel(
new Object [][] {
{new ImageIcon(getClass().getClassLoader().getResource("simply.jpg")), "pp"},
},
new String [] {
"image", "name"
}
));
</code></pre>
http://stackoverflow.com/questions/996300/how-to-use-google-guice-to-create-objects-that-require-parameters/996639#9966391Answer by MrWiggles for How to use Google Guice to create objects that require parameters?MrWiggles2009-06-15T15:06:38Z2009-06-15T15:06:38Z<p>Does your Processor need access to <code>anInputValue</code> for it's entire lifecycle? If not, could the value be passed in for the method call you're using, something like:</p>
<pre><code>@Inject
public MyClass(Processor processor) {
this.processor = processor;
}
public boolean myMethod(String anInputValue) {
return processor.isEnabled(anInputValue);
}
</code></pre>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423861#423861360Answer by MrWiggles for What's your favorite "programmer ignorance" pet peeve?MrWiggles2009-01-08T10:55:20Z2009-05-13T12:17:51Z<p>The lack of desire to continually improve. I've seen a lot of developers get to a certain level of skill and then just stop learning new things. No reading of blogs, journals, books; it's like they reached a certain skill level and went "yep, I know all I need to know now"</p>
http://stackoverflow.com/questions/856888/getting-selected-row-through-abstracttablemodel/857138#8571384Answer by MrWiggles for getting selected row through AbstractTableModelMrWiggles2009-05-13T10:12:04Z2009-05-13T10:12:04Z<p>The TableModel only concerns itself with the data, the ListSelectionModel concerns itself with what is currently selected, so, no you can't get the selected row from the TableModel.</p>
http://stackoverflow.com/questions/850571/automated-testing-ways-to-help-and-educate-developers/853061#8530611Answer by MrWiggles for Automated Testing: ways to help and educate developers?MrWiggles2009-05-12T14:24:29Z2009-05-12T14:24:29Z<p>A few things I'd do:</p>
<ol>
<li>Get them to run coverage and spot any missed areas of code and highlight how although they think they've got all the cases covered, they might not have. I've done this with a few people and they always seem quite surprised at areas they've missed when they thought they'd written watertight tests</li>
<li>Start a "recipe" page on your local Wiki. Every time someone comes up with a testing scenario that they can't figure out, or need your help with, stick it on the Wiki and make it easy to find. Get other people to contribute as well</li>
<li>It sounds like you're already doing this anyway, but ensure when anyone has a testing related question, <em>make yourself available</em> even if it's to the detriment of your normal workload. If you're passionate about it, it should inspire those who are interested to do the right thing too.</li>
</ol>
<p>When I'm introducing someone to testing (or a new testing technique), I'll often spend alot of my time randomly wandering over to their workstation just to see how they're getting on and nudge them in the right direction. This can be fitted in quite nicely when going for tea/smoke breaks or when you're doing a build. I've had quite good feedback about this but YMMV.</p>
http://stackoverflow.com/questions/768420/java-to-access-pci-modem/768435#7684352Answer by MrWiggles for Java to access pci-modemMrWiggles2009-04-20T14:13:49Z2009-04-20T14:13:49Z<p>A NoClassDefFoundError indicates that you're missing a JAR file from your classpath, specifically the one that is holding SerialPortEventListener class. Check your classpath.</p>
http://stackoverflow.com/questions/750637/jtextarea-with-strange-behaviour-when-resizing-the-jframe/750704#7507041Answer by MrWiggles for JTextArea with strange behaviour when resizing the JFrameMrWiggles2009-04-15T07:55:22Z2009-04-15T07:55:22Z<p>I believe this is because you have your weighty set to 0 (6th argument to the GridBagConstraints constructor). You'll need to increase this if you want your component to grow vertically. </p>
http://stackoverflow.com/questions/725432/best-programming-process-for-creating-a-graphically-complex-java-swing-applicatio/725579#7255793Answer by MrWiggles for Best programming process for creating a graphically-complex Java Swing Application?MrWiggles2009-04-07T13:02:14Z2009-04-07T13:02:14Z<p>I'd pick up a book on TDD and even if you're not going to write automated tests, it will be full of good advice on how to approach your project.</p>
<p>After that I'd pick a single piece of functionality that slices all the way through your application vertically and implement that end-to-end. This should allow you to get any infrastructure/frameworks in place and spot any gotcha's that may get thrown up out of your design.</p>
<p>If your client has the time free, show them each piece of functionality along the way and make sure that every piece you do adds some value to the product.</p>
<p>--EDIT</p>
<p>In addition I'd take a look at using a graphical designer for your screens instead of using the GridBagLayout. That will just waste time and can quickly become a maintainence nightmare when changing screens. I personally prefer the ones that work in a resource file type way, where the screen is essentially "compiled" and you just load it into your code</p>
http://stackoverflow.com/questions/712353/hot-deploy-on-eclipse-3-4-ganymede/712962#7129621Answer by MrWiggles for Hot Deploy on Eclipse 3.4: GanymedeMrWiggles2009-04-03T08:01:21Z2009-04-03T08:01:21Z<p>You can do this out of the box with remote debugging. Connect the Eclipse debugger to JBoss and when you make a code change it will be hot-patched where possible. </p>
<p>There's a tutorial on doing so <a href="http://www.onjava.com/pub/a/onjava/2005/08/31/eclipse-jboss-remote-debug.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/708794/help-with-knowing-which-button-number-was-pressed/708829#7088292Answer by MrWiggles for Help with knowing which button number was pressedMrWiggles2009-04-02T08:38:21Z2009-04-02T08:57:15Z<p>In keeping with giving you the least amount of information possible ;-)... try looking at JButton.setActionCommand()</p>
<p>Also, if you're going to use the same ActionListener for every button and check which was pressed, you should just instantiate the ActionListener once and add it to every button rather than creating one for every button.</p>
http://stackoverflow.com/questions/689370/java-collections-copy-list-i-dont-understand/689377#68937718Answer by MrWiggles for Java Collections copy list - I don't understandMrWiggles2009-03-27T11:25:11Z2009-03-27T11:25:11Z<p>Just do:</p>
<pre><code>List a = new ArrayList();
a.add("a");
a.add("b");
a.add("c");
List b = new ArrayList(a);
</code></pre>
<p>ArrayList has a constructor that will accept another Collection to copy the elements from</p>
http://stackoverflow.com/questions/1560249/a-cluster-aware-ioc-framework-what-would-you-think-it-should-do/1560273#1560273Comment by MrWiggles on A cluster-aware IoC framework - what would you think it should do?MrWiggles2009-10-13T14:58:26Z2009-10-13T14:58:26Z+1: exactly what I came here to sayhttp://stackoverflow.com/questions/1553245/accessing-a-queue-from-standalone-code/1553857#1553857Comment by MrWiggles on Accessing a Queue from standalone codeMrWiggles2009-10-12T10:59:56Z2009-10-12T10:59:56ZCan't help you there, I don't use the app in questionhttp://stackoverflow.com/questions/1502907/apache-wicket-texfield-nullComment by MrWiggles on apache wicket texfield null MrWiggles2009-10-01T09:34:54Z2009-10-01T09:34:54ZIt might help to post your page and form code + HTMLhttp://stackoverflow.com/questions/536449/cannot-refer-to-the-static-enum-field-within-an-initializer/536461#536461Comment by MrWiggles on Cannot refer to the static enum field within an initializer ?MrWiggles2009-08-26T15:47:55Z2009-08-26T15:47:55ZJon - do you know why this error doesn't occur in Eclipse 3.3 but does in 3.4?http://stackoverflow.com/questions/1124712/good-tool-for-system-design-in-java-eclipse/1124730#1124730Comment by MrWiggles on Good tool for system design in Java/Eclipse?MrWiggles2009-07-14T11:24:08Z2009-07-14T11:24:08Zlinks work fine for mehttp://stackoverflow.com/questions/1119740/loading-files-with-classloader/1119776#1119776Comment by MrWiggles on Loading files with ClassLoaderMrWiggles2009-07-13T14:29:57Z2009-07-13T14:29:57ZDarn. Beat me by a couple of secondshttp://stackoverflow.com/questions/1119385/junit-test-for-system-out-println/1119559#1119559Comment by MrWiggles on JUnit test for System.out.println()MrWiggles2009-07-13T14:13:19Z2009-07-13T14:13:19ZI prefer to use System.setOut(null) to restore the stream back to what it was when the VM was launchedhttp://stackoverflow.com/questions/1087317/do-setup-teardown-hurt-test-maintainability/1087483#1087483Comment by MrWiggles on Do setup/teardown hurt test maintainability?MrWiggles2009-07-07T08:29:51Z2009-07-07T08:29:51ZI perhaps won't be as "aggressive" as I am with production code, but I do want all common functionality in a single place (setup) so that each test case can just show how it differs from the happy-day scenario rather than having alot of setup codehttp://stackoverflow.com/questions/1079693/how-do-you-extract-a-jar-in-a-unix-filesystem-with-a-single-command-and-specify-i/1079726#1079726Comment by MrWiggles on How do you extract a JAR in a UNIX filesystem with a single command and specify its target directory using the JAR command?MrWiggles2009-07-03T15:56:44Z2009-07-03T15:56:44Z$ man unzip !!
I've amended the question to include just the Binaries.war filehttp://stackoverflow.com/questions/1037649/open-port-in-linux-with-java-applicationComment by MrWiggles on Open port in linux with java applicationMrWiggles2009-06-24T10:55:10Z2009-06-24T10:55:10ZThere's no difference between the 2. Show us your code to see what you're trying to dohttp://stackoverflow.com/questions/1009447/how-do-you-effectively-add-components-to-a-swing-panel-with-a-background-image/1009967#1009967Comment by MrWiggles on How do you effectively add components to a swing panel with a background image?MrWiggles2009-06-19T10:50:29Z2009-06-19T10:50:29ZWhy would you use a listener for repositioning the button? Just using the appropriate LayoutManager will take care of this for you and avoid any nasty redraw issueshttp://stackoverflow.com/questions/1007933/image-not-displaying-in-jtable-java-swing/1008021#1008021Comment by MrWiggles on Image not displaying in JTable (Java Swing)MrWiggles2009-06-18T13:52:56Z2009-06-18T13:52:56ZFeel free to mark this as the correct answer :)http://stackoverflow.com/questions/1006921/how-do-i-get-a-an-image-to-display-in-jtable-in-java-swing/1006940#1006940Comment by MrWiggles on How do I get a an image to display in JTable in java swingMrWiggles2009-06-17T16:03:43Z2009-06-17T16:03:43ZYou don't <i>need</i> to implement a TableCellRenderer as overriding the Column Class to ImageIcon will display an Image for you. You're correct in stating you need to adjust row heights thoughhttp://stackoverflow.com/questions/996300/how-to-use-google-guice-to-create-objects-that-require-parameters/996841#996841Comment by MrWiggles on How to use Google Guice to create objects that require parameters?MrWiggles2009-06-16T09:38:11Z2009-06-16T09:38:11ZSeeing as the API has now changed to Process.isEnabled(anInputValue) (the same as in my response), why bother include a Provider now? Why not just have a single Processor and skip the Provider completely?http://stackoverflow.com/questions/891857/in-java-what-exactly-does-file-canexecute-do/891891#891891Comment by MrWiggles on In Java what exactly does File.canExecute() do?MrWiggles2009-05-21T08:45:52Z2009-05-21T08:45:52ZThe file is owned by root.root and it's just been created, indicating the OP is running as root