| bio | website | zahniser.net/~russell |
|---|---|---|
| location | Boston, MA | |
| age | 31 | |
| visits | member for | 1 year, 4 months |
| seen | 2 mins ago | |
| stats | profile views | 205 |
Former APCS and physics teacher. Wrote CodeMotion IDE for teaching Java by computer tutoring. Now working as a programmer at a medical device company.
|
4h |
answered | Adding an item to a JList remove all other items |
|
6h |
answered | Instance fields don't initialize if overridden base method is called during class initialization |
|
1d |
answered | Swing vs JavaFx for desktop applications |
|
May 20 |
comment |
Equals method used in Map key comaprison What do the equals() methods look like? |
|
May 20 |
answered | JFrame leaking memory? |
|
May 20 |
comment |
JFrame leaking memory? The loop will terminate, because later it has if(shouldClose) return;. |
|
Apr 29 |
comment |
How is this Swing code working? The "true" in the super call makes the dialog modal. That means that the call to setVisible(true) will not return until the dialog is closed. |
|
Apr 13 |
answered | html 100% width header and footer |
|
Apr 13 |
comment |
Embed Java library in C @Harlandraka: The C module is clearly the client (it "interacts with the server"), so I read "it needs to invoke client's function" assuming that "it" is the (Java) server. |
|
Apr 13 |
answered | button clicking in Chrome |
|
Apr 13 |
comment |
button clicking in Chrome It looks like the only change on click should be the background - why would the text be moving? Also, can we assume that you are applying this class to a button element (as opposed to say, a div, which doesn't have an "active" state)? |
|
Apr 13 |
comment |
Embed Java library in C The functionality that makes it possible to call C code from a Java program is called "JNI". You can find lots of examples with a google search. |
|
Apr 13 |
comment |
How to add a description for each entry of enum? Or look at the official tutorial. Enums can have fields and constructors like any other class. |
|
Apr 6 |
answered | Use of overloading vs overriding, compile time vs run time |
|
Apr 5 |
awarded | swing |
|
Apr 4 |
comment |
How can I get JList item to be displayed in a JTextField You can add a ListSelectionListener to the list. |
|
Apr 4 |
comment |
Javascript + HTML - load image in the background (asynchronously?) It looks like your only problem is that you want to have img.src = "big.jpg". Then change_image() will be called when the big image is fully loaded, rather than just when the small image loads. |
|
Apr 4 |
comment |
how to create jcombobox with jcheck box and multiple selection You can do this by just reopening the menu when one of the items is clicked on. |
|
Apr 3 |
revised |
how to create jcombobox with jcheck box and multiple selection added code |
|
Apr 3 |
answered | how to create jcombobox with jcheck box and multiple selection |