User MrWiggles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:38:04Z http://stackoverflow.com/feeds/user/51577 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318818/are-the-swing-layoutmanagers-adequate/416082#416082 0 Answer by MrWiggles for Are the Swing LayoutManagers adequate? MrWiggles 2009-01-06T10:47:02Z 2009-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#1553857 1 Answer by MrWiggles for Accessing a Queue from standalone code MrWiggles 2009-10-12T10:41:10Z 2009-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-partition 0 Powermock Slows Down Test Startup on Eclipse/Fedora 10 when on NTFS partition MrWiggles 2009-02-16T21:30:40Z 2009-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#1392806 4 Answer by MrWiggles for How do I configure autoformatting in Eclipse? MrWiggles 2009-09-08T08:53:23Z 2009-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#1243734 4 Answer by MrWiggles for Are static anonymous classes definitely wrong in Java? MrWiggles 2009-08-07T09:08:42Z 2009-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#1222416 0 Answer by MrWiggles for Java default form action or button MrWiggles 2009-08-03T13:39:45Z 2009-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#1221384 0 Answer by MrWiggles for Java concurrency : Making webservice access threadsafe MrWiggles 2009-08-03T09:21:06Z 2009-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#1199295 1 Answer by MrWiggles for Java Webstart with parameters MrWiggles 2009-07-29T10:34:13Z 2009-07-29T10:34:13Z <p>Yeah you can, the following shows an example:</p> <pre><code>&lt;application-desc main-class="my.main.class"&gt; &lt;argument&gt;-user=bob&lt;/argument&gt; &lt;argument&gt;-pass=8jkaiuasu&lt;/argument&gt; &lt;/application&gt; </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#1171277 0 Answer by MrWiggles for Ant + JUnit: NoClassDefFoundError MrWiggles 2009-07-23T11:59:59Z 2009-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#1109315 0 Answer by MrWiggles for How to have Eclipse JEE automatically generate the exploded WAR for a web project? MrWiggles 2009-07-10T12:45:43Z 2009-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#1103972 5 Answer by MrWiggles for Problem with Observer Pattern and generics in Java MrWiggles 2009-07-09T13:41:56Z 2009-07-09T13:41:56Z <p>Change your _observers definition to this:</p> <pre><code>private List&lt;Observer&lt;? extends Observable&lt;U&gt;, U&gt;&gt; _observers = new ArrayList&lt;Observer&lt;? extends Observable&lt;U&gt;, U&gt;&gt;(); </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#1092553 4 Answer by MrWiggles for Auto-generate stub methods that throw in eclipse MrWiggles 2009-07-07T14:05:06Z 2009-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#1092426 0 Answer by MrWiggles for Java's equivalent to .Net's AutoResetEvent? MrWiggles 2009-07-07T13:43:48Z 2009-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#1087483 2 Answer by MrWiggles for Do setup/teardown hurt test maintainability? MrWiggles 2009-07-06T15:03:12Z 2009-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&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.amazon.co.uk%2FTest-Driven-Acceptance-Java-Developers%2Fdp%2F1932394850&amp;ei=%5FRFSSrzNO4%5FQjAfwmcS3BQ&amp;usg=AFQjCNFWA-PCKRoKQWO4UzOmhDCBhWT1-g&amp;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#1079726 6 Answer 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? MrWiggles 2009-07-03T14:56:40Z 2009-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#1073304 0 Answer by MrWiggles for java.net.ConnectException: Connection refused when SocketChannel.open is invoked MrWiggles 2009-07-02T09:09:19Z 2009-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-design 0 Using PowerMock or How much do you let your tests affect your design? MrWiggles 2009-01-09T11:28:54Z 2009-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#1044001 3 Answer by MrWiggles for Are there any built-in methods in Java to increase Font size? MrWiggles 2009-06-25T13:40:27Z 2009-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-insert 0 Mixing Parameterized Query and Sub-query on Insert MrWiggles 2009-06-19T09:06:06Z 2009-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#1008021 1 Answer by MrWiggles for Image not displaying in JTable (Java Swing) MrWiggles 2009-06-17T16:02:31Z 2009-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#996639 1 Answer by MrWiggles for How to use Google Guice to create objects that require parameters? MrWiggles 2009-06-15T15:06:38Z 2009-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#423861 360 Answer by MrWiggles for What's your favorite "programmer ignorance" pet peeve? MrWiggles 2009-01-08T10:55:20Z 2009-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#857138 4 Answer by MrWiggles for getting selected row through AbstractTableModel MrWiggles 2009-05-13T10:12:04Z 2009-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#853061 1 Answer by MrWiggles for Automated Testing: ways to help and educate developers? MrWiggles 2009-05-12T14:24:29Z 2009-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#768435 2 Answer by MrWiggles for Java to access pci-modem MrWiggles 2009-04-20T14:13:49Z 2009-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#750704 1 Answer by MrWiggles for JTextArea with strange behaviour when resizing the JFrame MrWiggles 2009-04-15T07:55:22Z 2009-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#725579 3 Answer by MrWiggles for Best programming process for creating a graphically-complex Java Swing Application? MrWiggles 2009-04-07T13:02:14Z 2009-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#712962 1 Answer by MrWiggles for Hot Deploy on Eclipse 3.4: Ganymede MrWiggles 2009-04-03T08:01:21Z 2009-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#708829 2 Answer by MrWiggles for Help with knowing which button number was pressed MrWiggles 2009-04-02T08:38:21Z 2009-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#689377 18 Answer by MrWiggles for Java Collections copy list - I don't understand MrWiggles 2009-03-27T11:25:11Z 2009-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#1560273 Comment by MrWiggles on A cluster-aware IoC framework - what would you think it should do? MrWiggles 2009-10-13T14:58:26Z 2009-10-13T14:58:26Z +1: exactly what I came here to say http://stackoverflow.com/questions/1553245/accessing-a-queue-from-standalone-code/1553857#1553857 Comment by MrWiggles on Accessing a Queue from standalone code MrWiggles 2009-10-12T10:59:56Z 2009-10-12T10:59:56Z Can't help you there, I don't use the app in question http://stackoverflow.com/questions/1502907/apache-wicket-texfield-null Comment by MrWiggles on apache wicket texfield null MrWiggles 2009-10-01T09:34:54Z 2009-10-01T09:34:54Z It might help to post your page and form code + HTML http://stackoverflow.com/questions/536449/cannot-refer-to-the-static-enum-field-within-an-initializer/536461#536461 Comment by MrWiggles on Cannot refer to the static enum field within an initializer ? MrWiggles 2009-08-26T15:47:55Z 2009-08-26T15:47:55Z Jon - 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#1124730 Comment by MrWiggles on Good tool for system design in Java/Eclipse? MrWiggles 2009-07-14T11:24:08Z 2009-07-14T11:24:08Z links work fine for me http://stackoverflow.com/questions/1119740/loading-files-with-classloader/1119776#1119776 Comment by MrWiggles on Loading files with ClassLoader MrWiggles 2009-07-13T14:29:57Z 2009-07-13T14:29:57Z Darn. Beat me by a couple of seconds http://stackoverflow.com/questions/1119385/junit-test-for-system-out-println/1119559#1119559 Comment by MrWiggles on JUnit test for System.out.println() MrWiggles 2009-07-13T14:13:19Z 2009-07-13T14:13:19Z I prefer to use System.setOut(null) to restore the stream back to what it was when the VM was launched http://stackoverflow.com/questions/1087317/do-setup-teardown-hurt-test-maintainability/1087483#1087483 Comment by MrWiggles on Do setup/teardown hurt test maintainability? MrWiggles 2009-07-07T08:29:51Z 2009-07-07T08:29:51Z I perhaps won't be as &quot;aggressive&quot; 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 code http://stackoverflow.com/questions/1079693/how-do-you-extract-a-jar-in-a-unix-filesystem-with-a-single-command-and-specify-i/1079726#1079726 Comment 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? MrWiggles 2009-07-03T15:56:44Z 2009-07-03T15:56:44Z $ man unzip !! I've amended the question to include just the Binaries.war file http://stackoverflow.com/questions/1037649/open-port-in-linux-with-java-application Comment by MrWiggles on Open port in linux with java application MrWiggles 2009-06-24T10:55:10Z 2009-06-24T10:55:10Z There's no difference between the 2. Show us your code to see what you're trying to do http://stackoverflow.com/questions/1009447/how-do-you-effectively-add-components-to-a-swing-panel-with-a-background-image/1009967#1009967 Comment by MrWiggles on How do you effectively add components to a swing panel with a background image? MrWiggles 2009-06-19T10:50:29Z 2009-06-19T10:50:29Z Why 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 issues http://stackoverflow.com/questions/1007933/image-not-displaying-in-jtable-java-swing/1008021#1008021 Comment by MrWiggles on Image not displaying in JTable (Java Swing) MrWiggles 2009-06-18T13:52:56Z 2009-06-18T13:52:56Z Feel 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#1006940 Comment by MrWiggles on How do I get a an image to display in JTable in java swing MrWiggles 2009-06-17T16:03:43Z 2009-06-17T16:03:43Z You 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 though http://stackoverflow.com/questions/996300/how-to-use-google-guice-to-create-objects-that-require-parameters/996841#996841 Comment by MrWiggles on How to use Google Guice to create objects that require parameters? MrWiggles 2009-06-16T09:38:11Z 2009-06-16T09:38:11Z Seeing 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#891891 Comment by MrWiggles on In Java what exactly does File.canExecute() do? MrWiggles 2009-05-21T08:45:52Z 2009-05-21T08:45:52Z The file is owned by root.root and it's just been created, indicating the OP is running as root