User Tom Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:54:21Z http://stackoverflow.com/feeds/user/5303 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android 1 Custom list clicking with checkboxes in Android Tom Martin 2009-05-21T21:43:30Z 2009-11-28T14:05:07Z <p>I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom transformation of the data.</p> <p>I want to add a checkbox to each row in the list so I've changed the view and added a CheckBox with gravity right.</p> <p>Adding the checkbox has removed the ability to click on the items. The onListItemClick method I was overriding in ListActivity is no longer called when you press on a list item. Removing the checkbox fixes this. Why is this?</p> <p>Also, how can I set up the list so that it continues to perform my required functionality if the main part of the list item is clicked but have additional functionality when the checkbox in the item is checked? Will setting a onCheckedChangedListener work or is the same view instance reused for each item in the list?</p> http://stackoverflow.com/questions/1794191/how-to-change-a-value-with-jquery/1794210#1794210 0 Answer by Tom Martin for how to change a value with jquery Tom Martin 2009-11-25T02:03:59Z 2009-11-25T02:03:59Z <p>jQuery operates on the elements in the DOM, not the elements' attributes.</p> <p>You need a selector that selects your img element and then edits your attribute.</p> <pre><code>$("img").attr('width', '35px') $("img").attr('height', '35px') </code></pre> <p>You probably need a more specific selector than "img" though. Do your images have a class or an id?</p> http://stackoverflow.com/questions/1794138/creating-javascript-object-from-jquery-object/1794190#1794190 1 Answer by Tom Martin for Creating Javascript object from JQuery object Tom Martin 2009-11-25T01:57:56Z 2009-11-25T01:57:56Z <p>jQuery's get method returns the original DOM elements for that jQuery object. I think perhaps you need to use <code>$('#selectedElem').get(0)</code></p> http://stackoverflow.com/questions/1736809/maintaining-a-single-instance-of-jinternalframe/1752212#1752212 1 Answer by Tom Martin for Maintaining a single instance of JInternalFrame? Tom Martin 2009-11-17T22:10:12Z 2009-11-17T22:10:12Z <p>You are comparing the classes of your input parameter and your desktops internal frames in your for loop. This will always be true as your parameter is an instance of JInternalFrame and the getAllFrames method returns an array of JInternalFrames. Why not just do a regular comparison? :</p> <pre><code>ShoppyPOSApp.frame.mainDesktopPane.getAllFrames()[i] == internalFrame </code></pre> <p>I would recommend using <code>HIDE_ON_CLOSE</code> as your <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JInternalFrame.html#setDefaultCloseOperation%28int%29" rel="nofollow">default close operation</a> on the frames and using <code>setVisible(false)</code> in your key listener instead of <code>dispose()</code>. When frames are disposed they are closed and you should not try and reuse a frame after is has been closed. If you just hide the frame it will still be a child of the desktop pane so you shoud add a call to <code>setVisible(true)</code> when you find a frame in your <code>setInternalFrame</code> method.</p> <p>It sounds like you're getting inconsistent behaviour (you say it fails after two or three disposes). This suggests to me that you have an event thread problem. Is your setInternalFrame being called on the event thread? Are you familiar with the <a href="http://java.sun.com/docs/books/tutorial/uiswing/concurrency/dispatch.html" rel="nofollow">Event Dispatch Thread</a> and are you using it correctly?</p> http://stackoverflow.com/questions/1650295/how-to-prevent-jscrollpane-from-scroll-down-on-repaint/1687097#1687097 0 Answer by Tom Martin for How to prevent JScrollPane from scroll down on repaint? Tom Martin 2009-11-06T11:47:43Z 2009-11-06T11:47:43Z <p>There's no behavior in a typical Swing component that would cause it to scroll when paintComponent is called. I would look in your custom painting code for calls to a method called <code>scrollRectToVisible</code>. This is a common way of causing a component to be scrolled within it's pane.</p> http://stackoverflow.com/questions/1595744/is-joptionpane-showmessagedialog-thread-safe 1 Is JOptionPane.showMessageDialog thread safe? Tom Martin 2009-10-20T16:10:07Z 2009-10-20T16:26:04Z <p>JOptionPane.showMessageDialog is supposed to be a useful utility for getting user feedback as it blocks your current thread while you wait.</p> <p>I would expect therefore that it would be thread-safe and that you wouldn't need to wrap the call in an invokeLater or an invokeAndWait.</p> <p>Is this the case?</p> http://stackoverflow.com/questions/1165658/exposing-inner-classes-when-obfuscating-with-proguard 0 Exposing inner classes when obfuscating with ProGuard Tom Martin 2009-07-22T14:25:46Z 2009-10-08T11:00:01Z <p>I'm obfuscating a library with ProGuard using the Ant task.</p> <p>I'm keeping particular class names and their method names when they have a particular annotation (@ApiAll) and I'm requesting that the InnerClasses attribute be kept:</p> <pre><code> &lt;keepattribute name="InnerClasses" /&gt; &lt;keep annotation="com.example.ApiAll"/&gt; &lt;keepclassmembers annotation="com.example.ApiAll"&gt; &lt;constructor access="public protected"/&gt; &lt;field access="public protected"/&gt; &lt;method access="public protected"/&gt; &lt;constructor access="protected"/&gt; &lt;/keepclassmembers&gt; </code></pre> <p>If I check the mapping output file I can see that my inner class that has the annotation and it's members are keeping their names unobfuscated. However when I look in the generated jar file I can't find the class.</p> <p>Am I missing something? Why is the mapping telling me it's keeping this class when it's not?</p> http://stackoverflow.com/questions/232811/boundary-for-comment-box/1510898#1510898 0 Answer by Tom Martin for Boundary for comment box Tom Martin 2009-10-02T17:33:38Z 2009-10-02T17:33:38Z <p>I would perhaps look at using <a href="https://jxlayer.dev.java.net/" rel="nofollow">JXLayer</a> for this. It looks like what you're trying to do here is paint some context outside the of component's bounds. This is the kind of thing JXLayer excels at.</p> http://stackoverflow.com/questions/1509682/how-to-check-the-status-of-checkbox-in-java-gui/1509735#1509735 2 Answer by Tom Martin for How to check the status of checkbox in java GUI? Tom Martin 2009-10-02T14:06:15Z 2009-10-02T14:06:15Z <p>You really should have put these in an array or Collection so that you can just loop over them. eg.</p> <pre><code>List&lt;JCheckBox&gt; allCheckBoxes = new ArrayList&lt;JCheckBox&gt;() allCheckboxes.add(new JCheckBox()); </code></pre> <p>etc.</p> <p>If you have all these checkboxes declared as members then there's no excuse to just put them in a list instead.</p> <p>In the meantime you could use a dodgy cast in a for loop (if all the checkboxes are on the same panel)</p> <pre><code>boolean allSelected = true; for(Component component : myPanel.getComponents()) { if(component instanceof JCheckBox) { allSelected &amp;= ((JCheckBox)component).isSelected(); } } </code></pre> <p>I'd recommend reading about Java arrays and collections before continuing</p> <p><a href="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html</a></p> <p><a href="http://java.sun.com/docs/books/tutorial/collections/index.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/collections/index.html</a></p> http://stackoverflow.com/questions/1456624/is-there-any-point-in-using-an-index-buffer-with-a-texture-in-opengl-es-android 0 Is there any point in using an index buffer with a texture in OpenGL ES (Android)? Tom Martin 2009-09-21T20:21:06Z 2009-09-26T23:40:37Z <p>I'm using OpenGL ES to display some objects exported from Blender. Blender provides a list of vertices, a list of the face indices and a list of the 2d texture co-ordinates. Within Blender, and I believe generally in OpenGL, the texture co-ordinates map to each vertex described in the index array.</p> <p>I suppose I have two questions: </p> <ol> <li><p>I'm <a href="http://www.rbgrn.net/content/313-light-racer-3d-days-1-2-learning-opengl-es" rel="nofollow">given to understand</a>(see the "Applying Textures" section) that in OpenGL ES the texture co-ordinates map to the vertex buffer only, not the index buffer. Is this the case or is there a way of binding the texture co-ords to the index buffer instead?</p></li> <li><p>If the above is true, is there anything to be gained from using an index buffer at all? After all to properly map the textures one will need to write out the vertex buffer with all the redundancy that would have been saved with the index buffer. Is there still a performance increase to be gained or are index buffers redundant for textured data?</p></li> </ol> http://stackoverflow.com/questions/727177/setting-the-mouse-cursor-for-a-particular-jtable-cell 0 Setting the mouse cursor for a particular JTable cell. Tom Martin 2009-04-07T19:07:39Z 2009-08-07T18:25:30Z <p>I have a JTable with a set of uneditable cells and I want all the cells in a particular column to have a different mouse cursor displayed whilst the mouse is hovering over them. I am already using a custom renderer and setting the cursor on the renderer component doesn't seem to work (as it does for tooltips).</p> <p>It does seem to work for editors.</p> <p>Is this not possible in JTable when your cell is not being edited or am I missing something?</p> http://stackoverflow.com/questions/887485/keeping-track-of-state-in-jflex 0 Keeping track of state in JFlex Tom Martin 2009-05-20T11:53:04Z 2009-06-30T08:40:55Z <p>I'm writing a custom flex file to generate a lexer for use with JSyntaxpane.</p> <p>The custom language I need to lex has different states that can be embedded into each other in a kind of stack.</p> <p>I.E you could be writing an expression that has a single quoted string in it and then embed another expression within the string using a special token eval(). But you can also embed the expression within a double quoted string.</p> <p>eg:</p> <pre><code>someExpressionFunction('a single-quoted string with an eval(expression) embedded in it', "a double-quoted string with an eval(expression) embedded in it") </code></pre> <p>This is a simplification, there are more states than this, but assuming I need to have different states for DOUBLE_STRING and SINGLE_STRING it adequately describes my situation.</p> <p>What's the best way to ensure I return to the correct state upon closing the eval expression (i.e return to DOUBLE_STRING if I was in double quotes, SINGLE_STRING if I was in single quotes)</p> <p>The solution I've come up with, which works, is to keep track of state using a Stack and some custom methods to use in lieu of using yybegin to start a different state.</p> <pre><code>private Stack&lt;Integer&gt; stack = new Stack&lt;Integer&gt;(); public void yypushState(int newState) { stack.push(yystate()); yybegin(newState); } public void yypopState() { yybegin(stack.pop()); } </code></pre> <p>Is this the best way to achieve this? Is there a simpler built-in function of JFlex I can leverage or a best practice I should know about?</p> http://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail 1 Why is my animation leaving a trail? Tom Martin 2009-06-18T20:42:14Z 2009-06-24T23:36:58Z <p>I'm animating a an ImageView from the left to the right of the screen using a translate animation. The ImageView is place inside a RelativeLayout over the top of my main layout using FrameLayout.</p> <p>When I run the animation on the emulator everything works pretty well but when I use run it on my G1 it leaves visual artifacts behind and effects the rendering of the text component behind it.</p> <p>Is this a performance issue and I'm being too ambitious or is it a bug I can overcome?</p> <p>If it is a performance issue is there anything I can do to improve things?</p> http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android/895602#895602 1 Answer by Tom Martin for Custom list clicking with checkboxes in Android Tom Martin 2009-05-21T22:33:17Z 2009-05-21T22:33:17Z <p>Looks like <code>SimpleCursorAdapter</code> is too primitive for what I wanted to achieve. I've switched to implementing <code>CursorAdapter</code> and returning a new view using the <code>LayoutInflater</code> in my implementation of the <code>newView</code> method.</p> <pre><code> public View newView(Context context, Cursor cursor, ViewGroup parent) { return LayoutInflater.from(context).inflate(R.layout.alarm_row, parent, false); } </code></pre> <p>In bindView I then set a custom <code>OnClickListener</code> to my main <code>LinearLayout</code> and then another <code>OnCheckedChangeListener</code> to the <code>CheckBox</code>.</p> <p>For all this to look right I had to set the <code>LinearLayout</code>'s background to android's menuitem drawable:</p> <pre><code>android:background="@android:drawable/menuitem_background" </code></pre> http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf/889740#889740 0 Answer by Tom Martin for What advantages are to be had by using Java+Swing over C#+WinForms/WPF? Tom Martin 2009-05-20T19:20:54Z 2009-05-20T19:20:54Z <p>Do you have any custom components which would be a pain to migrate from Swing to .net? Do you have staff that are expert at developing custom Swing components (Java2D expertise, familiarity with Swings input subsystem etc.) who know little about WinForm custom development?</p> <p>If the answer either to these questions is yes then you should probably stick with Swing.</p> http://stackoverflow.com/questions/838899/embed-a-java-code-editor-with-limited-scope-in-a-swing-application/841330#841330 1 Answer by Tom Martin for embed a java code editor with limited scope in a swing application? Tom Martin 2009-05-08T19:06:11Z 2009-05-08T19:06:11Z <p>To achieve code highlighting and some <em>simple</em> auto complete functionality it would be worth looking at the <a href="http://code.google.com/p/jsyntaxpane/" rel="nofollow">jsyntaxpane</a> component.</p> <p>It's pretty simple and easy to use but you're not going to get the compile functionality from that.</p> http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method 3 Best practice for incorrect parameters on a remove method Tom Martin 2009-04-08T17:33:39Z 2009-04-08T19:15:28Z <p>So I have an abstract data type called RegionModel with a series of values (Region), each mapped to an index. It's possible to remove a number of regions by calling:</p> <pre><code>regionModel.removeRegions(index, numberOfRegionsToRemove); </code></pre> <p>My question is what's the best way to handle a call when the index is valid :</p> <p><em>(between 0 (inclusive) and the number of Regions in the model (exclusive))</em> </p> <p>but the numberOfRegionsToRemove is invalid:</p> <p><em>(index + regionsToRemove > the number of regions in the model)</em></p> <p>Is it best to throw an exception like IllegalArgumentException or just to remove as many Regions as I can (all the regions from index to the end of the model)?</p> <p><em>Sub-question:</em> if I throw an exception what's the recommended way to unit test that the call threw the exception and left the model untouched (I'm using Java and JUnit here but I guess this isn't a Java specific question).</p> http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel/701829#701829 1 Answer by Tom Martin for how add different shapes partially on JPanel+image which is on JPanel Tom Martin 2009-03-31T16:17:34Z 2009-03-31T16:22:58Z <p>Another option is to use JLayeredPane instead of JPanel as your main container and place a non-opaque (setOpaque(false)) JPanel on a higher layer Use JLayeredPane.setLayer(yourPanel, highNumber) and fill your JLayeredPane using something like GridBagLayout or a simple custom LayoutManager.</p> <p>You can then implement the custom painting on that panel.</p> http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel/701805#701805 0 Answer by Tom Martin for how add different shapes partially on JPanel+image which is on JPanel Tom Martin 2009-03-31T16:13:27Z 2009-03-31T16:13:27Z <p>You could try using <a href="https://jxlayer.dev.java.net/" rel="nofollow">JXLayer</a> and defining a custom LayerUI for it that would draw the lines. These would then appear above the components you need to draw over. This is a little more advanced and involves using a 3rd party (open source) custom component but will allow you to change you mind about what Swing component you use to render your images later. I think <a href="http://weblogs.java.net/blog/alexfromsun/archive/2008/07/jxlayer%5F30%5Fhow.html" rel="nofollow">this</a> article best describes how to achieve what you want.</p> <p>I've solved many similar issues to this in the past in a variety of ways and none have had the flexibility and maintainability of JXLayer.</p> http://stackoverflow.com/questions/686333/is-component-getgraphicsconfiguration-thread-safe 0 Is Component.getGraphicsConfiguration thread safe? Tom Martin 2009-03-26T15:41:36Z 2009-03-26T15:59:04Z <p>There are many methods you shouldn't call if you are not on the AWT event thread. These are generally methods that manipulate the UI in some way.</p> <p>Is this the case with Component's getGraphicsConfiguration(...)? It is only a getter but it appears to cause a deadlock if the event thread is waiting on the thread calling this method.</p> <p>Whilst solving the deadlock is fairly trivial (avoid using wait or synchronize on the event thread), should I only be calling getGraphicsConfiguration in a Runnable passed to SwingUtilities.invokeLater(...) or invokeAndWait(...)?</p> http://stackoverflow.com/questions/566186/jtable-with-a-complex-editor 5 JTable with a complex editor Tom Martin 2009-02-19T16:49:11Z 2009-03-04T20:44:33Z <p>I have many custom editors for a JTable and it's an understatement to say that the usability, particularly in regard to editing with the keyboard, is lacking.</p> <p>The main reason for this is that my editors are always created with a similar (though often more complex) situation to this:</p> <pre><code>@Override public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) { JPanel container = new JPanel(); container.setLayout(new BorderLayout()); container.add(field, BorderLayout.CENTER); field.setText((String) value); container.add(new JButton("..."), BorderLayout.EAST); return container; } </code></pre> <p>I.E a panel with more than one component inside. The actual text editor is a descendant of the component being returned as the editor. So, rendering issues aside, from what I can tell, the JTable is focusing the component that is returned by the <code>getTableCellEditorComponent</code> method so when you press a key with a cell highlighted it passes focus and the key press to the panel, thinking that's the editor.<br /> Is there anyway I can inform JTable that the "real" editor is the JTextfield? Adding a hacky <code>requestFocusInWindow</code> on the correct component is insufficient as the key press won't get passed on.</p> http://stackoverflow.com/questions/586152/why-do-my-swing-application-windows-intermittently-not-close-when-the-application/586970#586970 0 Answer by Tom Martin for Why do my Swing application windows intermittently not close when the application exits? Tom Martin 2009-02-25T17:24:12Z 2009-02-25T17:24:12Z <p>What minor release of Java 6 are you using? I was on update 10 I think and having a lot of issues on Ubuntu 8.10, upgrading to .12 helped a lot.</p> http://stackoverflow.com/questions/586313/how-do-i-trigger-a-change-in-jquery/586366#586366 1 Answer by Tom Martin for How do I trigger a change in JQuery? Tom Martin 2009-02-25T15:11:39Z 2009-02-25T15:11:39Z <p>I think it is when you called droppable() that you made the cells droppable so you need to call droppable in your drag handler function.</p> <p>e.g.</p> <pre><code> start: function(event, ui) { $(this).css('background-color','#ddddff'); var $cells = $(this).parent().parent().children(); $cells.addClass("droppable_td"); $('.droppable_td').droppable ( { addClasses: false, over: function(event, ui) { $(this).css('background-color', '#ccffcc'); </code></pre> <p>etc.</p> <p>I'd suggest making all that into a function though.</p> http://stackoverflow.com/questions/573378/managing-parent-frame-from-child-frame-on-java-swing/575701#575701 0 Answer by Tom Martin for managing parent frame from child frame on java swing Tom Martin 2009-02-22T20:19:52Z 2009-02-22T20:19:52Z <p>You could have the JFrame implement ActionListener and add it to the button using addActionListener.</p> http://stackoverflow.com/questions/553757/is-inheritance-possible-in-jflex 0 Is inheritance possible in JFlex? Tom Martin 2009-02-16T15:51:51Z 2009-02-16T16:39:04Z <p>I'm fairly new to JFlex and JSyntaxPane although I have managed to hack together a <a href="http://code.google.com/p/jsyntaxpane/source/browse/branches/r095/jsyntaxpane/src/main/jflex/jsyntaxpane/lexers/xpath.flex" rel="nofollow">lexer for XPath</a>.</p> <p>The problem I find myself in is that I'm working on a project that supports a subset of XPath with a few proprietary features. Nasty I know.</p> <p>If this were a regular Java problem I'd turn to inheritance but it doesn't seem possible to achieve inheritance by having one lexer extend a previously generated one.</p> <p>e.g</p> <pre><code>import jsyntaxpane.Token; import jsyntaxpane.TokenType; %% %public %class ProprietaryLexer %extends XPathLexer %unicode %char %type Token </code></pre> <p>This seems to cause a load of errors telling me I can't extend some final methods. Is this a problem specific to the DefaultJFlexLexer in JSyntaxpane or am I just doing it wrong? Has anyone been in a similar situation and found a way to achieve some kind of ad hoc inheritance in a bunch of lexers?</p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state 3 Best way to define true, false, unset state Tom Martin 2008-11-24T17:11:18Z 2008-11-24T18:29:49Z <p>If you have a situation where you need to know where a boolean value wasn't set (for example if that unset value should inherit from a parent value) the Java boolean primitive (and the equivalent in other languages) is clearly not adequate.</p> <p>What's the best practice to achieve this? Define a new simple class that is capable of expressing all three states or use the Java Boolean class and use null to indicate the unset state?</p> http://stackoverflow.com/questions/60260/my-first-lisp-macro-is-it-leaky 3 My first Lisp macro; is it leaky? Tom Martin 2008-09-13T02:04:20Z 2008-11-06T11:57:48Z <p>I've been working through <a href="http://gigamonkeys.com/book" rel="nofollow">Practical Common Lisp</a> and as an exercise decided to write a macro to determine if a number is a multiple of another number:</p> <p><code>(defmacro multp (value factor)<br /> `(= (rem ,value ,factor) 0))</code></p> <p>so that : <code>(multp 40 10)</code> evaluates to true whilst <code>(multp 40 13)</code> does not </p> <p>The question is does this macro <a href="http://gigamonkeys.com/book/macros-defining-your-own.html#plugging-the-leaks" rel="nofollow">leak</a> in some way? Also is this "good" Lisp? Is there already an existing function/macro that I could have used?</p> http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout 1 What's the best way to truncate a URL so that it fits within a layout Tom Martin 2008-10-15T23:30:15Z 2008-10-16T07:45:13Z <p>What is the best way to truncate a URL when displaying it within a web page? I don't mean a link but literally displaying the URL as a value to the user, assuming that the text might be in a container of fixed width and you don't want to wrap or run outside of the container?</p> <p>Is it better to truncate from the end, favouring the early part of the url:</p> <p>eg. http/really.long/urlthaticantf...ere.html</p> <p>Or place the '...' in the middle to favour the start and end of the link as the most value in terms of giving context:</p> <p>eg. http/really.long/ur...aticantfithere.html</p> <p>Also what is a good rule of thumb when choosing how long to make the truncated url? Should you be pessimistic and pick a likely wide character such as capital 'M' and see how many of these fit in the layout? This tends to give really short URLs in general as most characters are much narrower than 'M'.</p> <p>Or should you be optimistic and use a truncation that generally gives a good length but risk overrunning when the URL contains many large characters?</p> http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them/108253#108253 2 Answer by Tom Martin for Sql: add a column to existing table and uniquely number them Tom Martin 2008-09-20T14:09:39Z 2008-09-20T14:09:39Z <p>It would help if you posted what SQL database you're using. For MySQL you probably want auto_increment:</p> <pre><code>ALTER TABLE tableName ADD id MEDIUMINT NOT NULL AUTO_INCREMENT KEY</code></pre> <p>Not sure if this applies the values retroactively though. If it doesn't you should just be able to iterate over your values with a stored procedure or in a simple program (as long as no one else is writing to the database) and set use the <code>LAST_INSERT_ID()</code> function to generate the id value.</p> http://stackoverflow.com/questions/78716/is-xslt-worth-it/78747#78747 0 Answer by Tom Martin for Is XSLT worth it? Tom Martin 2008-09-17T00:51:12Z 2008-09-17T01:56:47Z <p>I still believe that XSLT can be useful but it is an ugly language and can lead to an awful unreadable, unmaintainable mess. Partly because XML is not human readable enough to make up a "language" and partly because XSLT is stuck somewhere between being declarative and procedural. Having said that, and I think a comparison can be drawn with regular expressions, it has it's uses when it comes to simple well defined problems.</p> <p>Using the alternative approach and parsing XML in code can be equally nasty and you really want to employ some kind of XML marshalling/binding technology (such as JiBX in Java) that will convert your XML straight to an object.</p> http://stackoverflow.com/questions/1595744/is-joptionpane-showmessagedialog-thread-safe/1595795#1595795 Comment by Tom Martin on Is JOptionPane.showMessageDialog thread safe? Tom Martin 2009-10-20T16:50:37Z 2009-10-20T16:50:37Z Thanks, I am familiar with SwingWorker. http://stackoverflow.com/questions/1456624/is-there-any-point-in-using-an-index-buffer-with-a-texture-in-opengl-es-android/1482412#1482412 Comment by Tom Martin on Is there any point in using an index buffer with a texture in OpenGL ES (Android)? Tom Martin 2009-09-28T11:49:08Z 2009-09-28T11:49:08Z Thanks for the in depth answer. So vertex info is only consider redundant when it also has the same texture and normal values? And this isn't just limited to OpenGL ES as I first though. http://stackoverflow.com/questions/1456624/is-there-any-point-in-using-an-index-buffer-with-a-texture-in-opengl-es-android Comment by Tom Martin on Is there any point in using an index buffer with a texture in OpenGL ES (Android)? Tom Martin 2009-09-22T11:51:46Z 2009-09-22T11:51:46Z I disagree. I shouldn't have to tailor my questions to appeal to reputation farmers (or is this site turning into digg). The questions address the same issue and would best be answered by the same answerer. http://stackoverflow.com/questions/887485/keeping-track-of-state-in-jflex/1062473#1062473 Comment by Tom Martin on Keeping track of state in JFlex Tom Martin 2009-09-22T08:11:43Z 2009-09-22T08:11:43Z Hi Ayman, sorry I've only just seen your answer. I also like StackOverflow so I guess I was asking just to see if there was much of flex/lexing/parsing community here. I guess I should have cross posted at jsyntaxpane. I have posted there in the past (I'm TomPoges there). Nice work on JSyntaxPane btw. http://stackoverflow.com/questions/553757/is-inheritance-possible-in-jflex/553931#553931 Comment by Tom Martin on Is inheritance possible in JFlex? Tom Martin 2009-09-22T08:03:58Z 2009-09-22T08:03:58Z I flagged this as the answer because I ended up doing option 1. It's not ideal but I looks like these lexers haven't needed much maintenance so it is an acceptable compromise. http://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail/1015106#1015106 Comment by Tom Martin on Why is my animation leaving a trail? Tom Martin 2009-06-18T21:11:45Z 2009-06-18T21:11:45Z I'm using the animation framework provided by the Android framework so I have neither control over the double buffering or the display buffer. To me it looks like a bug. If this were a performance issue because my requirements were too ambitious the animation should just be jerky/have a low framerate. It performs reasonably well, it just leaves what look like pieces of the image behind it. They're cleaned up fairly quickly but it doesn't look good. http://stackoverflow.com/questions/727177/setting-the-mouse-cursor-for-a-particular-jtable-cell/727311#727311 Comment by Tom Martin on Setting the mouse cursor for a particular JTable cell. Tom Martin 2009-05-20T13:37:22Z 2009-05-20T13:37:22Z I'll accept the answer because this is what we were doing already and it works. I was hoping to find something a little nicer though. http://stackoverflow.com/questions/878344/how-good-is-php-performance/878451#878451 Comment by Tom Martin on How good is PHP performance? Tom Martin 2009-05-18T17:53:26Z 2009-05-18T17:53:26Z <a href="http://www.viddler.com/explore/carsonified/videos/13/" rel="nofollow">viddler.com/explore/carsonified/&hellip;</a> Blaine Cook &amp; Joe Stump, Languages Don't Scale. Highlights Reel. http://stackoverflow.com/questions/859012/approach-to-build-a-simple-calendar-in-java-swing/859087#859087 Comment by Tom Martin on approach to build a simple Calendar in Java Swing Tom Martin 2009-05-13T17:26:00Z 2009-05-13T17:26:00Z True but they also mentioned that it should be similar to Google Calendar which goes way beyond JTable's functionality. Also JTable still sucks. What happens when the OP needs to change the cursor for a particular cell, add a mouseover effect, use wrapped text or have a complex editor containing more than one Component? They'll run into JTable's myriad of shortcomings. http://stackoverflow.com/questions/859012/approach-to-build-a-simple-calendar-in-java-swing/859087#859087 Comment by Tom Martin on approach to build a simple Calendar in Java Swing Tom Martin 2009-05-13T17:00:59Z 2009-05-13T17:00:59Z Don't do it! JTable sucks, particularly for rich content. I'd recommend using a JPanel with a GridLayout with JPanels for each panel. JTables approach of using renderers for each cell and switching to editors will be wholly innappropriate for a calendar component. http://stackoverflow.com/questions/759321/removing-the-center-element-from-a-jpanel-using-borderlayout/759352#759352 Comment by Tom Martin on Removing the CENTER element from a JPanel using BorderLayout Tom Martin 2009-04-17T11:07:12Z 2009-04-17T11:07:12Z You're both missing the closing parenthesis for the remove function ;) http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731069#731069 Comment by Tom Martin on Best practice for incorrect parameters on a remove method Tom Martin 2009-04-09T09:26:52Z 2009-04-09T09:26:52Z Thanks. The test I went with declares a null exception variable and assigns it in the catch block. I then have an assertNotNull after the catch. http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731069#731069 Comment by Tom Martin on Best practice for incorrect parameters on a remove method Tom Martin 2009-04-08T18:07:06Z 2009-04-08T18:07:06Z I accepted your answer because the consensus is pointing to the exception and you mentioned the JUnit test. We probably won't be moving to JUnit 4 just yet though. As the article says &quot;JUnit 4 is a radical new framework, not a an upgraded version of the old framework&quot; http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731029#731029 Comment by Tom Martin on Best practice for incorrect parameters on a remove method Tom Martin 2009-04-08T17:48:04Z 2009-04-08T17:48:04Z If only the whole ecosystem was consistent! ;) http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731022#731022 Comment by Tom Martin on Best practice for incorrect parameters on a remove method Tom Martin 2009-04-08T17:46:19Z 2009-04-08T17:46:19Z I agree, but on the other hand I'm putting the burden of on the calling code to always check the parameters to avoid an exception being thrown. Kind of like returning null instead of an empty List (but not as bad).