User Eric Wendelin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:18:17Zhttp://stackoverflow.com/feeds/user/25066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/840763/using-java-util-prefs-preferences-in-jython0Using java.util.prefs.Preferences in JythonEric Wendelin2009-05-08T16:45:11Z2009-11-04T14:15:11Z
<p>I seem to be having trouble storing Java preferences using a Jython script. If in Jython 2.5 beta I use:</p>
<pre><code>clazz = Class.forName('mypackage.myclass')
prefs = Preferences.userNodeForPackage(clazz);
# or Preferences.userRoot()
prefs.put('propertyname', 'yes')
</code></pre>
<p>The preferences are not stored. If I then add:</p>
<pre><code>prefs.flush()
</code></pre>
<p>I get</p>
<blockquote>
<p>java.util.prefs.BackingStoreException: Couldn't get file lock.</p>
</blockquote>
<p>I am currently running this on Linux and Unix using Java 1.6. I'm hoping that I'm missing something obvious, since my Java applications can successfully use java.util.prefs.Preferences on the same system.</p>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1562897/java-web-start-window-title-problem0Java Web Start window title problemEric Wendelin2009-10-13T21:07:49Z2009-10-16T15:53:50Z
<p>I've written a JavaFX application that uses Java Web Start. For some reason, the window title is always "Java" (on Linux) or blank (on Windows). However, the desktop icon has the correct application title and image. </p>
<p>From what I've found so far, the important bit here is the information > title element in the JNLP file. </p>
<p>What am I missing? </p>
<p>NOTE: I'm happy to post my JNLP content if someone says it would be of use. </p>
http://stackoverflow.com/questions/1562897/java-web-start-window-title-problem/1578920#15789200Answer by Eric Wendelin for Java Web Start window title problemEric Wendelin2009-10-16T15:53:50Z2009-10-16T15:53:50Z<p>It turns out that the application title and icon for the taskbar entry are controlled by the <code>title</code> and <code>icons</code> attributes of the <code>Stage</code>. </p>
<p>Only the title and icon of the desktop icon are controlled by the JNLP.</p>
http://stackoverflow.com/questions/1535759/success-stories-for-javafx/1540102#15401020Answer by Eric Wendelin for Success stories for JavaFXEric Wendelin2009-10-08T20:05:44Z2009-10-08T20:05:44Z<p><a href="http://web.ubivent.com/start.en.html" rel="nofollow">Ubivent</a> and <a href="http://lodgon.com/DaliReport.html" rel="nofollow">DaliReport</a> - I haven't tried either of them but it's marginally comforting to know they exist. Of course, Sun itself uses JavaFX (no surprise there).</p>
http://stackoverflow.com/questions/1514912/javafx-jdk-not-found/1521430#15214301Answer by Eric Wendelin for JavaFX JDK not foundEric Wendelin2009-10-05T17:45:30Z2009-10-05T17:45:30Z<p>I believe Sun recommends Java versions later than Java 6 update 10 for JavaFX as it takes advantage of the new applet re-working and various other bits. Try upgrading.</p>
<p>Let me know if that doesn't fix your problem.</p>
http://stackoverflow.com/questions/1517725/handling-mouse-events-in-javafx/1521385#15213851Answer by Eric Wendelin for Handling mouse events in javafxEric Wendelin2009-10-05T17:36:03Z2009-10-05T17:36:03Z<p>The easiest change for you is to change:</p>
<pre><code>function doSomething():Void{}
</code></pre>
<p>to</p>
<pre><code>function doSomething(e:MouseEvent):Void{}
</code></pre>
<p>The action property is nice but I'm sure you want some custom rollover effect or something using onMouseEntered etc.</p>
http://stackoverflow.com/questions/1493757/restrict-url-access-in-jsp/1493802#14938021Answer by Eric Wendelin for restrict url access in JSPEric Wendelin2009-09-29T17:02:23Z2009-09-29T17:02:23Z<p>Alternatively, you can use a filter that catches all requests and forwards to the correct path as appropriate. It would take more work than security constraints but you could have more control over processing.</p>
<p>Using security constraints is certainly a good simple solution, though.</p>
http://stackoverflow.com/questions/1487868/multiple-scenes-in-javafx/1488413#14884131Answer by Eric Wendelin for Multiple scenes in JavaFXEric Wendelin2009-09-28T17:50:31Z2009-09-29T16:57:32Z<p>If you are sure you will only have 2 different scenes, you can just bind the scene property of the Stage like so:</p>
<pre><code>var showSecondScene = false;
var myButton = Button {
onMouseClicked: function(e) { showSecondScene = true; }
}
def stage = Stage {
scene: bind if (showSecondScene) then secondScene else firstScene
}
</code></pre>
<p>UPDATE: This actually works if you have any number of scenes like so:</p>
<pre><code>scene: bind if (showScene1) then scene1
else if (showScene2) then scene2
else scene3
</code></pre>
<p>You might consider why you'd have more than 2 scenes, instead opting for setting 'visible: false' on overlapping Group nodes instead.</p>
http://stackoverflow.com/questions/1428639/should-i-really-be-expected-to-work-more-than-40-hours-a-week-just-because-i-am/1428676#14286762Answer by Eric Wendelin for Should I really be expected to work more than 40 hours a week just because I am 'salaried developer'?Eric Wendelin2009-09-15T17:51:39Z2009-09-15T17:51:39Z<p>This is the classic problem of salaried jobs. Sometimes you're going to have to work over 40 to hit deadlines, and of course some employers take advantage of their employees by expecting this. </p>
<p>If your job doesn't satisfy your monetary needs yet asks for too much in return, leave. </p>
http://stackoverflow.com/questions/1428589/extjs-xml-tree-example-that-i-put-into-the-layout-browser-example-provided-by-ext/1428627#14286270Answer by Eric Wendelin for extjs xml tree example that I put into the layout-browser example provided by extjsEric Wendelin2009-09-15T17:44:28Z2009-09-15T17:44:28Z<p>Well just for starters you're missing a ":" after "listeners". That would certainly cause the Tree not to render. </p>
http://stackoverflow.com/questions/1428538/button-behavior-in-firefox-vs-ie/1428557#14285571Answer by Eric Wendelin for <button> behavior in Firefox vs IEEric Wendelin2009-09-15T17:32:48Z2009-09-15T17:32:48Z<p>In this case I wouldn't go with multiple submit buttons. It'd be better to set a hidden input to the value you want (using Javascript) when the buttons are clicked. Then the javascript can call myform.submit()</p>
http://stackoverflow.com/questions/1428515/html-select-tag-problem/1428532#14285321Answer by Eric Wendelin for html select tag problemEric Wendelin2009-09-15T17:27:09Z2009-09-15T17:27:09Z<p>Browsers generally only check if the selected attribute exists. Therefore you should change your code to:</p>
<pre><code><select name="ms">
<option value="-1">any</option>
<option value="0" selected="selected">only single</option>
<option value="1">only married</option>
</select>
</code></pre>
<p>EDIT: Looks like you edited your example so I'll edit mine.</p>
http://stackoverflow.com/questions/1339702/javafx-offline-ability/1359984#13599840Answer by Eric Wendelin for JavaFx Offline ability?Eric Wendelin2009-09-01T00:06:26Z2009-09-01T00:06:26Z<p>JavaFX is perfect for an offline rich application. </p>
<p>I'm guessing you want to hear about the javafx.io.Storage and javafx.io.Resource which allow you to store application data offline, even without that security dialog because Java will store the data in a secure sandbox. You can check out the javafxdoc on this <a href="http://java.sun.com/javafx/1.2/docs/api/javafx.io/javafx.io.Storage.html" rel="nofollow">here</a></p>
<p>Mark is right that you can also use any other Java-based method to store data locally on client machines. </p>
http://stackoverflow.com/questions/1295480/javafx-applet-web-page-refresh-and-close-notifications/1329066#13290661Answer by Eric Wendelin for JavaFX Applet web-page refresh and close notifications? Eric Wendelin2009-08-25T15:31:03Z2009-08-25T15:31:03Z<p>Two steps:</p>
<ol>
<li>You <em>may</em> need to use a Javascript's window.onunload event to tell your JavaFX app to "close". If you do this, you can then</li>
<li>Add <code>FX.addShutdownAction(myfunction);</code> to your <code>run()</code> function. This will execute myfunction when your app is closed.</li>
</ol>
<p>I don't have some complete code for you here, but I hope it's a start. You <em>may</em> not need to do step 1.</p>
http://stackoverflow.com/questions/1294212/how-does-javafx-cache-http-downloads/1329027#13290271Answer by Eric Wendelin for How does JavaFX cache http downloads?Eric Wendelin2009-08-25T15:26:42Z2009-08-25T15:26:42Z<p>AFAIK the JavaFX runtime will cache the JARs used for the applet. It will not use the browser cache, though. </p>
http://stackoverflow.com/questions/1319399/how-to-debug-javafx/1329003#13290031Answer by Eric Wendelin for How to debug JavaFXEric Wendelin2009-08-25T15:23:55Z2009-08-25T15:23:55Z<p>First off, I'd start with downloading the latest version of NetBeans (6.7.1 as of today). Second, NetBeans will let you put breakpoints in places that don't make sense for the language. You're best off putting breakpoints in a function like the <code>run()</code> function and stepping from there. </p>
<p>One more thing: make sure you have your JavaFX project set as the main project if you use that Debug button since I believe that it acts on your main project only.</p>
http://stackoverflow.com/questions/1318645/javafx-or-swing/1328949#13289492Answer by Eric Wendelin for JavaFX or Swing?Eric Wendelin2009-08-25T15:16:13Z2009-08-25T15:16:13Z<p>Points to consider:</p>
<ul>
<li>JavaFX is young, so it won't have as much documentation. However, depending on what you're doing, it's much easier to use. For instance: to add a click handler to any node, just add <code>onMouseClicked: myfunction(e:MouseEvent)</code> in the declaration. You will have more examples for Swing, though.</li>
<li>It's <em>much</em> easier to start with JavaFX than to bring it in later. You don't have to worry about this since you are a student.</li>
<li>JavaFX has gained popularity significantly since its 1.2 release. It still is not mainstream but might be a good technology to invest yourself in for the future (thinking mobile phones)</li>
</ul>
<p>Since you're a student, I'd personally have to say JavaFX. Sure it's harder to get started, but I think it'll pay off with it's <em>relative</em> simplicity compared to Swing later.</p>
http://stackoverflow.com/questions/1295551/groovy-equivalent-to-pythons-exec-statement/1295654#12956543Answer by Eric Wendelin for Groovy equivalent to Python's exec statement?Eric Wendelin2009-08-18T18:25:40Z2009-08-20T23:15:03Z<p>To execute a command-line program dynamically in Groovy:</p>
<pre><code>"cmdstring".execute().text
</code></pre>
<p>You can also execute some Groovy code wrapped in a String with:</p>
<pre><code>def myGroovyCode = 'println "hi"'
Eval.me(myGroovyCode) //prints hi
</code></pre>
<p>See <a href="http://groovy.codehaus.org/api/groovy/util/Eval.html" rel="nofollow">http://groovy.codehaus.org/api/groovy/util/Eval.html</a></p>
http://stackoverflow.com/questions/1294784/css-container-div-height-floating-div-questions/1294847#12948471Answer by Eric Wendelin for CSS Container DIv Height. Floating DIV questions.Eric Wendelin2009-08-18T16:02:55Z2009-08-18T16:02:55Z<p>By the way, you want</p>
<p><code>div#parent > div { float:left; }</code></p>
<p>instead of </p>
<p><code>div#parent div:first-child { float:left; }</code></p>
<p>which is still not IE6 friendly, but it will float both child DIVs.</p>
http://stackoverflow.com/questions/1289931/blocked-background-on-lines-within-paragraph-tag/1290320#12903200Answer by Eric Wendelin for Blocked Background on lines within Paragraph TagEric Wendelin2009-08-17T20:45:44Z2009-08-17T20:45:44Z<p>Browsers treat line breaks as a single space, so you are going to have to modify the HTML. </p>
<p>I'm not convinced you can figure out where the line breaks exist with Javascript. In this case you're going to have to modify the HTML yourself and basically do what Pat suggested.</p>
http://stackoverflow.com/questions/255756/javascript-debuggers-for-low-marketshare-browsers2Javascript debuggers for low-marketshare browsersEric Wendelin2008-11-01T16:50:06Z2009-08-16T21:13:38Z
<p>I am working on a web application that needs to support the widest possible audience. I have errors popping up in Konqueror that don't occur in major browsers.</p>
<p>So I'm curious, are there any JavaScript (or CSS for that matter) debugging tools for any low-market share browsers, or is there some platform agnostic way to ensure proper execution in <em>almost all</em> environments.</p>
http://stackoverflow.com/questions/1279953/how-to-execute-the-output-of-a-command-within-the-current-shell/1279970#12799702Answer by Eric Wendelin for How to execute the output of a command within the current shell?Eric Wendelin2009-08-14T20:17:56Z2009-08-14T20:17:56Z<p>I think your solution is command substitution with backticks: <a href="http://tldp.org/LDP/Bash-Beginners-Guide/html/sect%5F03%5F04.html" rel="nofollow">http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html</a></p>
<p>See section 3.4.5</p>
http://stackoverflow.com/questions/1247874/changing-scrollbar-position/1247900#12479000Answer by Eric Wendelin for Changing Scrollbar PositionEric Wendelin2009-08-08T03:32:12Z2009-08-08T03:32:12Z<p>The three scrolling functions you'll want to concern yourself with are <code>window.scroll(x,y)</code>, <code>window.scrollBy(dx,dy)</code>, and <code>window.scrollTo(x,y)</code>. </p>
<p>As David mentioned you'll need the scroll position to know where you are and use the <code>window.onscroll</code> event to fire off this calculation.</p>
http://stackoverflow.com/questions/1099064/do-beautiful-user-friendly-java-applets-exist/1099105#1099105-1Answer by Eric Wendelin for Do beautiful, user-friendly Java applets exist?Eric Wendelin2009-07-08T16:19:39Z2009-07-08T16:19:39Z<p>Hopefully they will with JavaFX. </p>
http://stackoverflow.com/questions/1027909/good-examples-of-groovy-apis-for-restful-web-services0Good examples of Groovy APIs for RESTful web servicesEric Wendelin2009-06-22T15:41:34Z2009-07-04T09:52:37Z
<p>I'm writing my first Groovy API for a RESTful web service. Could someone please provide some good open-source examples or best-practices to inspire my API design? </p>
<p>I'm considering using Groovy's Expandos, XML Parsing, and straight-forward URL request mechanism, but I'd like to hear other ways to make an API Groovy. Ideas?</p>
<p>Thanks a bunch. </p>
http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060398#10603980Answer by Eric Wendelin for How long should it take a senior developer to solve FizzBuzz during an interview?Eric Wendelin2009-06-29T20:37:39Z2009-06-29T20:37:39Z<p>Their choice of language on their PC? I'd say 3 minutes tops.</p>
http://stackoverflow.com/questions/1060348/html-tables/1060370#10603702Answer by Eric Wendelin for HTML tablesEric Wendelin2009-06-29T20:34:37Z2009-06-29T20:34:37Z<p>You'll want to put that textarea into a table cell with colspan="2" to get the desired effect. </p>
<p>Bonus points if you use CSS instead of a table for this ;)</p>
http://stackoverflow.com/questions/1051237/can-i-change-the-context-of-javascript-this/1051249#10512490Answer by Eric Wendelin for Can I change the context of javascript "this"?Eric Wendelin2009-06-26T20:54:13Z2009-06-26T20:54:13Z<p>Not sure if it's best practice, but you can store a reference to the old "this" with:</p>
<pre><code>_this = this;
// Do some stuff
_this.someMethod();
</code></pre>
http://stackoverflow.com/questions/1050869/getattribute-in-firefox-3-5-and-ie8-doesnt-work-how-it-used-to/1051146#10511461Answer by Eric Wendelin for getAttribute in Firefox 3.5 and IE8 doesn't work how it used to.Eric Wendelin2009-06-26T20:31:30Z2009-06-26T20:31:30Z<p>So my first guess is that tab is undefined if .className returns nothing. </p>
<p>I'm thinking there is something wrong with </p>
<pre><code>document.getElementsByName(headerName).item(0);
</code></pre>
<p>Set a breakpoint on the while loop with <a href="http://getfirebug.com" rel="nofollow">Firebug</a> and then type "tab" in the console and hit Enter. If there is no Firebug available for FF 3.5. Try using it to find other ways to get at the desired elements. </p>
http://stackoverflow.com/questions/1050964/how-to-do-file-uploads-via-a-java-applet/1051077#10510771Answer by Eric Wendelin for How to do file uploads via a Java applet?Eric Wendelin2009-06-26T20:18:44Z2009-06-26T20:18:44Z<p>I've had to do just this, with very large (4Gb+) files. The piece of code at the bottom of this Google Answers post helped me out a LOT:
<a href="http://answers.google.com/answers/threadview?id=193780" rel="nofollow">http://answers.google.com/answers/threadview?id=193780</a></p>
<p>It showed a way of uploading files chunked into smaller bits, so you can easily use a JProgressBar. </p>
http://stackoverflow.com/questions/659780/what-is-your-favorite-open-source-debugging-tool/659979#659979Comment by Eric Wendelin on What is your favorite open source debugging tool?Eric Wendelin2009-10-14T16:13:43Z2009-10-14T16:13:43Z+1 to liveHTTP headers. That's what I've been using to track HTTP request data in the browser.http://stackoverflow.com/questions/1538935/caesars-cipher-using-python-could-use-a-little-help/1539611#1539611Comment by Eric Wendelin on Caesar's Cipher using python, could use a little help.Eric Wendelin2009-10-08T21:01:00Z2009-10-08T21:01:00ZThis question is just begging for a sweet application of string translate. Well done :)http://stackoverflow.com/questions/1535759/success-stories-for-javafx/1540119#1540119Comment by Eric Wendelin on Success stories for JavaFXEric Wendelin2009-10-08T20:51:49Z2009-10-08T20:51:49ZYeah I totally hated JavaFX before the 1.2 release. Soooo much better now.http://stackoverflow.com/questions/1517725/handling-mouse-events-in-javafx/1521385#1521385Comment by Eric Wendelin on Handling mouse events in javafxEric Wendelin2009-10-07T15:26:54Z2009-10-07T15:26:54ZOh you want to pass a function to another?
function doSomething(function(MouseEvent):otherfunc):Void { ... }
http://stackoverflow.com/questions/1514912/javafx-jdk-not-found/1521430#1521430Comment by Eric Wendelin on JavaFX JDK not foundEric Wendelin2009-10-06T03:19:14Z2009-10-06T03:19:14ZFrom what I gather it completely depends on what features the JavaFX app is trying to use from the platform. I have seen apps that work on Java 5 even but it just seems safest to go with the most recent version.
Glad it worked out for you.http://stackoverflow.com/questions/1517025/javafx-timeline-inaccuraciesComment by Eric Wendelin on JavaFX timeline inaccuracies Eric Wendelin2009-10-05T17:37:59Z2009-10-05T17:37:59ZGlad you got it, but in the future posting code is the best way to get help. Happy JavaFX-ing!http://stackoverflow.com/questions/1487868/multiple-scenes-in-javafx/1488413#1488413Comment by Eric Wendelin on Multiple scenes in JavaFXEric Wendelin2009-09-30T16:41:38Z2009-09-30T16:41:38ZYes just use println("message"), but you must NOT be in WebStart application mode or you must configure your Java Web Start settings.
I would recommend running this in NetBeans using "Standard" execution mode.http://stackoverflow.com/questions/1487868/multiple-scenes-in-javafx/1488413#1488413Comment by Eric Wendelin on Multiple scenes in JavaFXEric Wendelin2009-09-29T16:58:38Z2009-09-29T16:58:38ZI've updated my answer. Definitely consider if you want multiple scenes or just multiple CustomNodes setting visibility as appropriate.http://stackoverflow.com/questions/1433768/why-does-floated-div-sometimes-inherit-the-margin-of-the-following-elementComment by Eric Wendelin on Why does floated div sometimes inherit the margin of the following element?Eric Wendelin2009-09-16T15:50:44Z2009-09-16T15:50:44ZJust thought I'd note that you're closing your last div with /h2. Also, you should self-close your br elements since you're using an XHTML Strict doctype.http://stackoverflow.com/questions/1428369/valid-keywords-for-beginning-a-java-source-file/1428459#1428459Comment by Eric Wendelin on Valid Keywords for Beginning a Java Source FileEric Wendelin2009-09-15T17:24:26Z2009-09-15T17:24:26ZOoh strictfp is hardcore. Someone should write a code example of its usage.http://stackoverflow.com/questions/1294212/how-does-javafx-cache-http-downloads/1329027#1329027Comment by Eric Wendelin on How does JavaFX cache http downloads?Eric Wendelin2009-08-25T22:33:44Z2009-08-25T22:33:44ZYeah I have had good experiences with that. There is a 512K limit or something, though just FYI.http://stackoverflow.com/questions/1318645/javafx-or-swingComment by Eric Wendelin on JavaFX or Swing?Eric Wendelin2009-08-25T15:36:51Z2009-08-25T15:36:51ZIt might be helpful if you describe the kind of application you are building.http://stackoverflow.com/questions/1295551/groovy-equivalent-to-pythons-exec-statement/1295654#1295654Comment by Eric Wendelin on Groovy equivalent to Python's exec statement?Eric Wendelin2009-08-20T23:17:26Z2009-08-20T23:17:26ZSorry I must have been on crack or something. You now have a real answer :)http://stackoverflow.com/questions/1294784/css-container-div-height-floating-div-questions/1294847#1294847Comment by Eric Wendelin on CSS Container DIv Height. Floating DIV questions.Eric Wendelin2009-08-18T21:50:26Z2009-08-18T21:50:26ZAh yes I see that now, thanks.http://stackoverflow.com/questions/254712/disable-spell-checking-on-html-textfields/254716#254716Comment by Eric Wendelin on Disable spell-checking on HTML textfieldsEric Wendelin2009-08-17T17:27:14Z2009-08-17T17:27:14ZJust because it was the best answer at the time. I'm guessing Michiel hasn't gone back through and marked the other one as correct. That would be fine with me since it is a better answer.