User javamonkey79 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T17:46:40Z http://stackoverflow.com/feeds/user/27657 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1889714/maven-how-to-get-all-transitive-dependencies-programatically-in-a-mojo 1 Maven: How to get all transitive dependencies programatically in a MOJO [closed] javamonkey79 2009-12-11T17:45:53Z 2009-12-11T18:47:23Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1492000/how-to-get-access-to-mavens-dependency-hierarchy-within-a-plugin">How to get access to Maven&rsquo;s dependency hierarchy within a plugin.</a> </p> </blockquote> <p>The dependency:tree plugin:goal has an option 'verbose' which displays all conflicts &amp; duplicates in the dependency tree. I am trying to reuse that information in my own mojo to generate reports, however - I can't seem to figure out exactly how that plugin is gathering all transitive dependencies\artifacts. </p> <p>I've tried:</p> <pre><code>ArtifactResolutionResult result = _artifactCollector.collect( _project.getDependencyArtifacts(), _project.getArtifact(), _project.getManagedVersionMap(), _localRepository, _project.getRemoteArtifactRepositories(), _artifactMetadataSource, null, Collections.EMPTY_LIST ); </code></pre> <p>As far as I can tell this is how the tree goal is doing it with the exception of the listener. </p> <p>Does anyone out there know how to do what I am asking?</p> <p>UPDATE: I didn't search well enough apparently, my question is a duplicate of: <a href="http://stackoverflow.com/questions/1492000/how-to-get-access-to-mavens-dependency-hierarchy-within-a-plugin">this</a>. Please vote to close as I have already done, thanks.</p> http://stackoverflow.com/questions/1863727/creating-a-squircle/1865647#1865647 0 Answer by javamonkey79 for Creating a Squircle javamonkey79 2009-12-08T08:58:08Z 2009-12-08T08:58:08Z <p>Ok, upon further investigation here is why you are getting the "triangle intersecting it". When you drawPolygon the points are drawn and the last point connects the first point, closing the points and making the polygon. Since you draw one half it is drawn (then connected to itself) and then the same happens for the other side. </p> <p>As a <strong>test</strong> of this change your last couple lines to this:</p> <pre><code> for( int i = 0; i &lt; yPoints.length; i++ ) { g.drawString( "*", xPoints[ i ], yPoints[ i ] ); } for( int i = 0; i &lt; mypoints.length; i++ ) { g.drawString( "*", xPoints[ i ], mypoints[ i ] ); } // g.drawPolygon( xPoints, yPoints, xPoints.length ); // g.drawPolygon( xPoints, ( mypoints ), xPoints.length ); </code></pre> <p>It is a little crude, but I think you'll get the point. There are lots of solutions out there, personally I would try using an array of the Point class and then sort it when done, but I don't know the specifics of what you can and can not do.</p> http://stackoverflow.com/questions/1863727/creating-a-squircle/1864007#1864007 0 Answer by javamonkey79 for Creating a Squircle javamonkey79 2009-12-08T01:27:32Z 2009-12-08T01:27:32Z <p>There is a javascript version <a href="http://www.oocities.com/dougtclark/mySquircle.html" rel="nofollow">here</a>. You can view the source and "compare notes" to potentially see what you are doing wrong.</p> http://stackoverflow.com/questions/1863711/swt-version-of-getoppositecomponent-on-focus-change 0 SWT version of: getOppositeComponent on focus change javamonkey79 2009-12-07T23:53:30Z 2009-12-08T00:02:44Z <p>In Swing you can get "the other Component involved in this focus change" from this: <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/event/FocusEvent.html#getOppositeComponent%28%29" rel="nofollow">getOppositeComponent</a>. There does not seem to be a similar call in SWT, does anyone have a workaround or fix for this?</p> <p>TIA</p> http://stackoverflow.com/questions/1665846/identity-from-sql-insert-via-jdbctemplate 1 identity from sql insert via jdbctemplate javamonkey79 2009-11-03T07:52:05Z 2009-11-11T22:51:04Z <p>Is it possible to get the @@identity from the SQL insert on a Spring jdbc template call? If so, how?</p> <p>TIA</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407507#407507 72 Answer by javamonkey79 for What's your most controversial programming opinion? javamonkey79 2009-01-02T17:35:49Z 2009-11-07T23:25:02Z <p><strong>SESE* Is not law</strong></p> <p>*<sub>Single Entry Single Exit</sub> </p> <p>example:</p> <pre><code>public int foo() { if( someCondition ) { return 0; } return -1; } </code></pre> <p>vs:</p> <pre><code>public int foo() { int returnValue = -1; if( someCondition ) { returnValue = 0; } return returnValue; } </code></pre> <p>]]</p> <p>My team and I have found that abiding by this all the time is actually counter-productive in many cases. </p> http://stackoverflow.com/questions/1665846/identity-from-sql-insert-via-jdbctemplate/1665921#1665921 2 Answer by javamonkey79 for identity from sql insert via jdbctemplate javamonkey79 2009-11-03T08:15:55Z 2009-11-03T08:15:55Z <p>I don't know if there is a "one-liner" but this seems to do the trick (for MSSQL at least):</p> <pre><code>// -- call this after the insert query... this._jdbcTemplate.queryForInt( "select @@identity" ); </code></pre> <p>Decent article <a href="http://www.zabada.com/technology/Wiki.jsp?page=SpringAndJDBC" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1157495/html-css-coupon-script -1 HTML\CSS Coupon Script javamonkey79 2009-07-21T06:01:09Z 2009-10-19T19:46:27Z <p>Does anyone know how to create a coupon (printable is even better) with HTML &amp; CSS? Forgive the horribly simple question, I don't do much of any web development :)</p> <p>Thanks in advance.</p> <p>EDIT: EDIT: Seth posted his answer again, which I accepted, thus I removed the answer from here (it was just a copy of his original deleted post).</p> http://stackoverflow.com/questions/1522874/best-way-to-parse-an-xml-string-in-java/1522885#1522885 1 Answer by javamonkey79 for Best way to parse an XML String in Java? javamonkey79 2009-10-05T23:18:42Z 2009-10-05T23:18:42Z <p>I personally prefer <a href="http://dom4j.org" rel="nofollow">dom4j</a>. Check out their quick start, it is pretty simple.</p> http://stackoverflow.com/questions/210413/command-line-recursive-rename-move-in-windows 4 Command line recursive rename\move in windows? javamonkey79 2008-10-16T21:42:55Z 2009-09-15T23:08:29Z <p>Does anyone know of a simple &amp; free app or script for windows (XP) that emulates the Unix recursive move|rename command?</p> http://stackoverflow.com/questions/1397550/create-database-error/1397574#1397574 0 Answer by javamonkey79 for Create Database :: ERROR javamonkey79 2009-09-09T04:48:44Z 2009-09-09T04:48:44Z <p>I had this same problem earlier today; I think the problem is you are trying to script a copy of the database, but it can't find the log files paths to create on the backend. </p> <p>My solution was to create the database from the management studio GUI, and then right click on the original DB, go to tasks, generate scripts, script all objects, finish. I then copied the generated script into a 'new query' on the new db. </p> http://stackoverflow.com/questions/1387121/formatting-for-money-with-settextstring-valueof/1387139#1387139 1 Answer by javamonkey79 for Formatting (for money) with setText(String.valueOf) javamonkey79 2009-09-07T00:48:19Z 2009-09-07T00:58:27Z <p>Use <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/text/NumberFormat.html" rel="nofollow">this</a> class. Here is an example that I think will help <a href="http://www.java2s.com/Code/Java/Development-Class/Formatanumbertocurrency.htm" rel="nofollow">here</a>. Here is the code from the example link:</p> <pre><code>import java.text.NumberFormat; public class Mortgage { public static void main(String[] args) { double payment = Math.random() * 1000; System.out.println("Your payment is "); NumberFormat nf = NumberFormat.getCurrencyInstance(); System.out.println(nf.format(payment)); } } </code></pre> <p>My only caution is that it does do rounding - there are methods you can play with to adjust this though...</p> http://stackoverflow.com/questions/1355810/how-is-an-instance-initializer-different-from-a-constructor/1355843#1355843 7 Answer by javamonkey79 for How is an instance initializer different from a constructor? javamonkey79 2009-08-31T04:50:56Z 2009-08-31T04:50:56Z <p>This seems to explain it well:</p> <p>"Instance initializers are a useful alternative to instance variable initializers whenever: (1) initializer code must catch exceptions, or (2) perform fancy calculations that can't be expressed with an instance variable initializer. <em>You could, of course, always write such code in constructors.</em> <strong>But in a class that had multiple constructors, you would have to repeat the code in each constructor. With an instance initializer, you can just write the code once, and it will be executed no matter what constructor is used to create the object. Instance initializers are also useful in anonymous inner classes, which can't declare any constructors at all.</strong>"</p> <p>From <a href="http://www.javaworld.com/javaworld/jw-03-1998/jw-03-initialization.html?page=4" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1338203/automation-in-eclipse/1338264#1338264 1 Answer by javamonkey79 for Automation in Eclipse javamonkey79 2009-08-27T00:21:18Z 2009-08-27T00:21:18Z <p>Maven is another solution. There are many mojos (custom plugins) for existing tasks that are highly configurable, or if you get stuck you can write your own. </p> <p>The trade off is the setup and learning curve can be fairly steep, so I guess it boils down to what you need it for, if you'll reuse it, etc, etc.</p> http://stackoverflow.com/questions/211236/running-external-apps-on-save-in-eclipse/271641#271641 1 Answer by javamonkey79 for Running External Apps on save in Eclipse javamonkey79 2008-11-07T09:46:11Z 2009-08-27T00:18:57Z <p>Depending on the importance, I would write a simple plugin to handle this. </p> <p>EDIT: All you <em>really</em> need to do is this:</p> <p>1) Create the plugin from the templates with the RCP\PDE Eclipse install<br> 2) Add the following code to your activator...<br></p> <pre><code>@Override public void start( final BundleContext context ) throws Exception { super.start( context ); plugin = this; ICommandService commandService = (ICommandService)plugin.getWorkbench().getService( ICommandService.class ); commandService.addExecutionListener( new IExecutionListener() { public void notHandled( final String commandId, final NotHandledException exception ) {} public void postExecuteFailure( final String commandId, final ExecutionException exception ) {} public void postExecuteSuccess( final String commandId, final Object returnValue ) { if ( commandId.equals( "org.eclipse.ui.file.save" ) ) { // add in your action here... // personally, I would use a custom preference page, // but hard coding would work ok too } } public void preExecute( final String commandId, final ExecutionEvent event ) {} } ); } </code></pre> http://stackoverflow.com/questions/1279394/java-thread-blocking 1 java thread blocking javamonkey79 2009-08-14T18:26:36Z 2009-08-17T07:04:33Z <p>Can non synchronized methods called from synchronized methods allow a thread to block?</p> <pre><code>public synchronized void foo(){ someStuff(); someMoreStuff(); bar(); } public void bar(){ //... does some things } </code></pre> <p>If a thread is executing foo() is there anyway to ensure that bar() will be called before the thread sleeps?</p> <p>TIA</p> http://stackoverflow.com/questions/1235742/java-threading-question-listening-to-n-error-streams 0 Java threading question - listening to n error streams javamonkey79 2009-08-05T21:04:14Z 2009-08-05T21:27:31Z <p>Hello all, </p> <p>Let me say first that my experience with threading is pretty low. </p> <p>I have an app that starts up several other Java jars via the <code>Runtime.exec</code> method. The problem is that the jars that are started need to be run concurrently, but in order to get at the error stream for the started jars you have to basically have a loop 'sitting and listening' until the process completes.</p> <p>This is what I have now:</p> <pre><code>_processes.add( Runtime.getRuntime().exec( commandList.toArray( new String[ commandList.size() ] ) ) ); Thread thread = new Thread( new Runnable() { private final int _processNumber = _processes.size() - 1; public void run() { String streamData = _processNumber + " : "; streamData += "StdError [\r"; BufferedReader bufferedReader = new BufferedReader( new InputStreamReader( _processes.get( _processNumber ).getErrorStream() ) ); String line = null; try { while ( ( line = bufferedReader.readLine() ) != null ) { streamData += line + "\r"; } bufferedReader.close(); streamData += "]\r"; LOG.error( streamData ); } catch ( Exception exception ) { LOG.fatal( exception.getMessage() ); exception.printStackTrace(); } } } ); thread.start(); </code></pre> <p>Can anyone explain how to get the 'error stream listener threads' to work properly?</p> <p>TIA</p> http://stackoverflow.com/questions/1203488/sql-server-jbdc-driver-comparison 2 SQL Server JBDC Driver comparison javamonkey79 2009-07-29T22:40:18Z 2009-07-31T18:45:10Z <p>Currently we use <a href="http://jtds.sourceforge.net/" rel="nofollow">jtds</a> for connecting to our SQL Server databases. I've always taken it for granted that we use it due to performance and reliability reasons, however, it's usage pre-dates my employment. </p> <p>All of that being said, we are now playing with the idea of moving to SQL Server 2008, which jtds has limited support for. Initial tests seem to indicate that jtds has better performance than the Microsoft supplied driver on 2005. </p> <p>So my question is does anyone have any empirical evidence or any other good information otherwise indicating which jdbc driver is best suited for use with SQL Server 2005 and\or 2008?</p> <p>Is jtds better? The driver supplied by Microsoft? Something else?</p> <p>I've thought about profiling, but have doubts about whether this will really prove anything.</p> http://stackoverflow.com/questions/1135627/mysql-select-accumulated-column/1135658#1135658 0 Answer by javamonkey79 for MySQL select "accumulated" column javamonkey79 2009-07-16T06:00:54Z 2009-07-16T06:00:54Z <p>I don't know how\if you would do that with one select but I think you could select the elements then have a cursor 'accumulate' on the second pass.</p> http://stackoverflow.com/questions/1115359/how-to-draw-a-rectangle-on-a-java-applet-using-mouse-drag-event-and-make-it-stay/1115403#1115403 2 Answer by javamonkey79 for How to draw a rectangle on a java applet using mouse drag event and make it stay javamonkey79 2009-07-12T06:20:16Z 2009-07-12T06:20:16Z <p>Ok, after re-reading your question it seems you could care less to have multiple rectangles :)</p> <p>Here is a solution with only one at a time (which is close to what you had to begin with):</p> <pre><code>import java.awt.BorderLayout; import java.awt.Graphics; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseMotionListener; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.SwingConstants; public class MouseTracker4July extends JFrame implements MouseListener, MouseMotionListener { private static final long serialVersionUID = 1L; private final JLabel mousePosition; int x1, x2, y1, y2; int x, y, w, h; private final JLabel recStart; private final JLabel recStop; private final JLabel cords; // set up GUI and register mouse event handlers boolean isNewRect = true; public MouseTracker4July() { super( "Rectangle Drawer" ); this.mousePosition = new JLabel(); this.mousePosition.setHorizontalAlignment( SwingConstants.CENTER ); getContentPane().add( this.mousePosition, BorderLayout.CENTER ); JLabel text1 = new JLabel(); text1.setText( "At the center the mouse pointer's coordinates will be displayed." ); getContentPane().add( text1, BorderLayout.SOUTH ); this.recStart = new JLabel(); getContentPane().add( this.recStart, BorderLayout.WEST ); this.recStop = new JLabel(); getContentPane().add( this.recStop, BorderLayout.EAST ); this.cords = new JLabel(); getContentPane().add( this.cords, BorderLayout.NORTH ); addMouseListener( this ); // listens for own mouse and addMouseMotionListener( this ); // mouse-motion events setSize( 800, 600 ); setVisible( true ); } // MouseListener event handlers // handle event when mouse released immediately after press public void mouseClicked( final MouseEvent event ) { this.mousePosition.setText( "Clicked at [" + event.getX() + ", " + event.getY() + "]" ); repaint(); } // handle event when mouse pressed public void mousePressed( final MouseEvent event ) { this.mousePosition.setText( "Pressed at [" + ( this.x1 = event.getX() ) + ", " + ( this.y1 = event.getY() ) + "]" ); this.recStart.setText( "Start: [" + this.x1 + ", " + this.y1 + "]" ); this.isNewRect = true; repaint(); } // handle event when mouse released after dragging public void mouseReleased( final MouseEvent event ) { this.mousePosition.setText( "Released at [" + ( this.x2 = event.getX() ) + ", " + ( this.y2 = event.getY() ) + "]" ); this.recStop.setText( "End: [" + this.x2 + ", " + this.y2 + "]" ); repaint(); } // handle event when mouse enters area public void mouseEntered( final MouseEvent event ) { this.mousePosition.setText( "Mouse entered at [" + event.getX() + ", " + event.getY() + "]" ); repaint(); } // handle event when mouse exits area public void mouseExited( final MouseEvent event ) { this.mousePosition.setText( "Mouse outside window" ); repaint(); } // MouseMotionListener event handlers // handle event when user drags mouse with button pressed public void mouseDragged( final MouseEvent event ) { this.mousePosition.setText( "Dragged at [" + ( this.x2 = event.getX() ) + ", " + ( this.y2 = event.getY() ) + "]" ); // call repaint which calls paint repaint(); this.isNewRect = false; repaint(); } // handle event when user moves mouse public void mouseMoved( final MouseEvent event ) { this.mousePosition.setText( "Moved at [" + event.getX() + ", " + event.getY() + "]" ); repaint(); } @Override public void paint( final Graphics g ) { super.paint( g ); // clear the frame surface g.drawString( "Start Rec Here", this.x1, this.y1 ); g.drawString( "End Rec Here", this.x2, this.y2 ); int width = this.x1 - this.x2; int height = this.y1 - this.y2; this.w = Math.abs( width ); this.h = Math.abs( height ); this.x = width &lt; 0 ? this.x1 : this.x2; this.y = height &lt; 0 ? this.y1 : this.y2; if ( !this.isNewRect ) { g.drawRect( this.x, this.y, this.w, this.h ); } this.cords.setText( "w = " + this.w + ", h = " + this.h ); } public static void main( final String args[] ) { MouseTracker4July application = new MouseTracker4July(); application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); } } // end class MouseTracker </code></pre> http://stackoverflow.com/questions/1115359/how-to-draw-a-rectangle-on-a-java-applet-using-mouse-drag-event-and-make-it-stay/1115366#1115366 2 Answer by javamonkey79 for How to draw a rectangle on a java applet using mouse drag event and make it stay javamonkey79 2009-07-12T05:14:59Z 2009-07-12T06:04:17Z <p>You need to store your drawn items in some data structure and ensure that each item in the structure is painted to the canvas on repaint.</p> <p>Also, you need to add repaint to each of your mouse events.</p> <p>Like this: (this assumes you want to keep ALL rect's) - you can go with a single rect by eliminating the arraylist and replacing with a single rect instance.</p> <pre><code>import java.awt.BorderLayout; import java.awt.Graphics; import java.awt.Rectangle; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseMotionListener; import java.util.ArrayList; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.SwingConstants; public class MouseTracker4July extends JFrame implements MouseListener, MouseMotionListener { private static final long serialVersionUID = 1L; private final JLabel mousePosition; int x1, x2, y1, y2; int w, h; private final JLabel recStart; private final JLabel recStop; private final JLabel cords; // set up GUI and register mouse event handlers private final ArrayList&lt; Rectangle &gt; rectangles = new ArrayList&lt; Rectangle &gt;(); private boolean isNewRect = true; public MouseTracker4July() { super( "Rectangle Drawer" ); this.mousePosition = new JLabel(); this.mousePosition.setHorizontalAlignment( SwingConstants.CENTER ); getContentPane().add( this.mousePosition, BorderLayout.CENTER ); JLabel text1 = new JLabel(); text1.setText( "At the center the mouse pointer's coordinates will be displayed." ); getContentPane().add( text1, BorderLayout.SOUTH ); this.recStart = new JLabel(); getContentPane().add( this.recStart, BorderLayout.WEST ); this.recStop = new JLabel(); getContentPane().add( this.recStop, BorderLayout.EAST ); this.cords = new JLabel(); getContentPane().add( this.cords, BorderLayout.NORTH ); addMouseListener( this ); // listens for own mouse and addMouseMotionListener( this ); // mouse-motion events setSize( 800, 600 ); setVisible( true ); } // MouseListener event handlers // handle event when mouse released immediately after press public void mouseClicked( final MouseEvent event ) { this.mousePosition.setText( "Clicked at [" + event.getX() + ", " + event.getY() + "]" ); repaint(); } // handle event when mouse pressed public void mousePressed( final MouseEvent event ) { this.mousePosition.setText( "Pressed at [" + ( this.x1 = event.getX() ) + ", " + ( this.y1 = event.getY() ) + "]" ); this.recStart.setText( "Start: [" + this.x1 + ", " + this.y1 + "]" ); repaint(); } // handle event when mouse released after dragging public void mouseReleased( final MouseEvent event ) { this.mousePosition.setText( "Released at [" + ( this.x2 = event.getX() ) + ", " + ( this.y2 = event.getY() ) + "]" ); this.recStop.setText( "End: [" + this.x2 + ", " + this.y2 + "]" ); Rectangle rectangle = getRectangleFromPoints(); this.rectangles.add( rectangle ); this.w = this.h = this.x1 = this.y1 = this.x2 = this.y2 = 0; this.isNewRect = true; repaint(); } private Rectangle getRectangleFromPoints() { int width = this.x1 - this.x2; int height = this.y1 - this.y2; Rectangle rectangle = new Rectangle( width &lt; 0 ? this.x1 : this.x2, height &lt; 0 ? this.y1 : this.y2, Math.abs( width ), Math.abs( height ) ); return rectangle; } // handle event when mouse enters area public void mouseEntered( final MouseEvent event ) { this.mousePosition.setText( "Mouse entered at [" + event.getX() + ", " + event.getY() + "]" ); repaint(); } // handle event when mouse exits area public void mouseExited( final MouseEvent event ) { this.mousePosition.setText( "Mouse outside window" ); repaint(); } // MouseMotionListener event handlers // handle event when user drags mouse with button pressed public void mouseDragged( final MouseEvent event ) { this.mousePosition.setText( "Dragged at [" + ( this.x2 = event.getX() ) + ", " + ( this.y2 = event.getY() ) + "]" ); // call repaint which calls paint repaint(); this.isNewRect = false; repaint(); } // handle event when user moves mouse public void mouseMoved( final MouseEvent event ) { this.mousePosition.setText( "Moved at [" + event.getX() + ", " + event.getY() + "]" ); repaint(); } @Override public void paint( final Graphics g ) { super.paint( g ); // clear the frame surface g.drawString( "Start Rec Here", this.x1, this.y1 ); g.drawString( "End Rec Here", this.x2, this.y2 ); Rectangle newRectangle = getRectangleFromPoints(); if ( !this.isNewRect ) { g.drawRect( newRectangle.x, newRectangle.y, newRectangle.width, newRectangle.height ); } for( Rectangle rectangle : this.rectangles ) { g.drawRect( rectangle.x, rectangle.y, rectangle.width, rectangle.height ); } this.cords.setText( "w = " + this.w + ", h = " + this.h ); } public static void main( final String args[] ) { MouseTracker4July application = new MouseTracker4July(); application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); } } // end class MouseTracker </code></pre> http://stackoverflow.com/questions/1111998/how-to-get-a-column-from-a-2d-java-array/1112219#1112219 1 Answer by javamonkey79 for How to get a column from a 2D java array? javamonkey79 2009-07-10T22:03:41Z 2009-07-10T22:03:41Z <p>If you are locked down to using a 2d array, then yes, this is it afaik. However, a suggestion that may help you (if possible):</p> <p>Wrap the array in a class that handles the column fetching.</p> <p>Good luck.</p> http://stackoverflow.com/questions/1107776/jprogressbar/1107838#1107838 1 Answer by javamonkey79 for JProgressBar javamonkey79 2009-07-10T05:20:32Z 2009-07-10T05:20:32Z <p>Perhaps you can use <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/ProgressMonitor.html" rel="nofollow">ProgressMonitor</a>?</p> <p>From the <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html" rel="nofollow">API documentation</a>:</p> <p><strong>Deciding Whether to Use a Progress Bar or a Progress Monitor</strong> Use a progress monitor if:</p> <ul> <li>You want an easy way to display progress in a dialog.</li> <li>The running task is secondary and the user might not be interested in the progress of the task. Progress monitor provides a way for the user to dismiss the dialog while the task is still running.</li> <li><strong>You want an easy way for the task to be cancelled</strong>. Progress monitor provides a GUI for the user to cancel the task. All you have to do is call progress monitor's isCanceled method to find out if the user pressed the Cancel button.</li> </ul> <p>Just some thoughts, hope this helps.</p> http://stackoverflow.com/questions/1107732/how-to-avoid-oom-out-of-memory-error-when-retrieving-all-records-from-huge-tabl/1107744#1107744 2 Answer by javamonkey79 for How to avoid OOM (Out of memory) error when retrieving all records from huge table? javamonkey79 2009-07-10T04:51:33Z 2009-07-10T04:51:33Z <p>I think you could use the same solution as <a href="http://stackoverflow.com/questions/1080852/fastest-way-to-iterate-through-large-table-using-jdbc">this one</a>. A scrollable resultset.</p> http://stackoverflow.com/questions/1101512/how-do-you-explain-your-job-to-non-programmers/1101558#1101558 0 Answer by javamonkey79 for How do you explain your job to non-programmers? javamonkey79 2009-07-09T02:32:35Z 2009-07-09T04:35:12Z <p>I work with the JCAPS engine delivering TCP/IP messages to many endpoints. In laymens terms = glorified mail man. :) </p> http://stackoverflow.com/questions/1101433/java-compare-object-values/1101447#1101447 0 Answer by javamonkey79 for Java: compare object values javamonkey79 2009-07-09T01:47:19Z 2009-07-09T02:02:25Z <p>It sounds like you are comparing references and not data.</p> <p>EDIT: From the API doc for Object: "The equals method for class Object implements the most discriminating possible equivalence relation on objects; that is, for any non-null reference values x and y, this method returns true if and only if x and y refer to the same object (x == y has the value true). "</p> <p>e.g. If 'X' or it's parent classes do not override equals then when you call equals then it will be comparing the references, which if they are the same object will always be the equal. </p> <p>By the sounds of it you need to override the equals method in the class 'X', but then again, what you say seems to indicate that they are the same reference anyhow?</p> http://stackoverflow.com/questions/1101336/sql-using-an-insert-within-a-select-statement/1101455#1101455 0 Answer by javamonkey79 for SQL: Using an INSERT within a SELECT statement javamonkey79 2009-07-09T01:50:42Z 2009-07-09T01:50:42Z <p>Perhaps dynamic SQL would solve this? Example <a href="http://www.mssqltips.com/tip.asp?tip=1160" rel="nofollow">here</a>. Or maybe you could store the values in a table var, and do your insert on that.</p> http://stackoverflow.com/questions/1101403/practicing-regex/1101425#1101425 1 Answer by javamonkey79 for Practicing regex javamonkey79 2009-07-09T01:41:04Z 2009-07-09T01:41:04Z <p>You can probably find some gems in the programming contests site: <a href="http://acm.uva.es/problemset/" rel="nofollow">here</a>. Granted, these are not specific to regular expressions, but there are bound to be a few there whose solutions fall in this domain.</p> http://stackoverflow.com/questions/1095281/eliminating-unnecessary-log4j-setup-output/1095374#1095374 4 Answer by javamonkey79 for Eliminating unnecessary log4j setup output javamonkey79 2009-07-07T23:34:02Z 2009-07-07T23:34:02Z <p>This looks like the debug from the logger itself. If you are using the XML config it looks like this:</p> <pre><code>&lt;log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="true"&gt; </code></pre> <p>Turn the debug to false.</p> http://stackoverflow.com/questions/1078238/maven2-how-to-run-some-goal-before-plugin/1078303#1078303 1 Answer by javamonkey79 for Maven2 how to run some goal before plugin? javamonkey79 2009-07-03T08:11:13Z 2009-07-03T08:11:13Z <p>You can script it out and string it together like this:</p> <pre><code>mvn clean assembly:assembly </code></pre> <p>for example...</p> http://stackoverflow.com/questions/1492000/how-to-get-access-to-mavens-dependency-hierarchy-within-a-plugin/1492023#1492023 Comment by javamonkey79 on How to get access to Maven's dependency hierarchy within a plugin. javamonkey79 2009-12-11T18:44:01Z 2009-12-11T18:44:01Z +1 Very nice, thanks! However, the snippet contains a small error: List&lt; DependencyNode &gt; nodes = visitor.getNodes(); Above the for loop. http://stackoverflow.com/questions/1863711/swt-version-of-getoppositecomponent-on-focus-change/1863739#1863739 Comment by javamonkey79 on SWT version of: getOppositeComponent on focus change javamonkey79 2009-12-08T01:20:34Z 2009-12-08T01:20:34Z But then what happens when the user clicks somewhere outside of the program? Or even in the program but not on a specific widget (e.g. a Composite)? The widget has lost focus and no one else has fired the focus gained event - thus no validation. http://stackoverflow.com/questions/1863711/swt-version-of-getoppositecomponent-on-focus-change/1863739#1863739 Comment by javamonkey79 on SWT version of: getOppositeComponent on focus change javamonkey79 2009-12-08T00:32:41Z 2009-12-08T00:32:41Z Unfortunately, the algorithm is in focusLost(...) so this will not help. http://stackoverflow.com/questions/1863727/creating-a-squircle/1863749#1863749 Comment by javamonkey79 on Creating a Squircle javamonkey79 2009-12-08T00:20:33Z 2009-12-08T00:20:33Z Meh, who cares - he said it in the title. See: <a href="http://en.wikipedia.org/wiki/Squircle" rel="nofollow">en.wikipedia.org/wiki/Squircle</a> http://stackoverflow.com/questions/1863727/creating-a-squircle/1863749#1863749 Comment by javamonkey79 on Creating a Squircle javamonkey79 2009-12-08T00:07:06Z 2009-12-08T00:07:06Z +1 for stating the obvious :) http://stackoverflow.com/questions/1863727/creating-a-squircle Comment by javamonkey79 on Creating a Squircle javamonkey79 2009-12-08T00:04:25Z 2009-12-08T00:04:25Z Please state your problem specifically. e.g. - it is not drawing, it draws wrong, etc, etc. http://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings/1810542#1810542 Comment by javamonkey79 on Eclipse: Most useful refactorings javamonkey79 2009-12-07T23:58:23Z 2009-12-07T23:58:23Z FYI - (and maybe you know or can't use it for whatever reason)...you can setup 'Save Actions' to auto-format for you (amongst other things). I find this helpful insofar as not having to manually format via ctrl+shift+f http://stackoverflow.com/questions/1665846/identity-from-sql-insert-via-jdbctemplate/1718651#1718651 Comment by javamonkey79 on identity from sql insert via jdbctemplate javamonkey79 2009-11-12T01:15:45Z 2009-11-12T01:15:45Z Wow, I didn't really know about that class - kinda neat. Thanks. +1 http://stackoverflow.com/questions/1665846/identity-from-sql-insert-via-jdbctemplate/1668361#1668361 Comment by javamonkey79 on identity from sql insert via jdbctemplate javamonkey79 2009-11-03T16:21:42Z 2009-11-03T16:21:42Z That would be the &quot;one liner&quot; I am looking for here. Nice. Sad thing is I saw the link but glossed past it due to this: &quot;part of the JDBC 3.0 standard&quot;. (I don't think we use JDBC 3.0, but I also don't think this is relevant). http://stackoverflow.com/questions/1580832/how-to-install-a-custom-plug-in-in-eclipse-ganymede/1580894#1580894 Comment by javamonkey79 on How to install a custom plug-in in Eclipse Ganymede? javamonkey79 2009-10-16T23:47:29Z 2009-10-16T23:47:29Z aka, &quot;the old school way&quot; :) http://stackoverflow.com/questions/1580758/javaeclipse-how-do-you-debug-a-java-program-that-is-receiving-piped-redirected Comment by javamonkey79 on Java+Eclipse: how do you debug a java program that is receiving piped/redirected stdin? javamonkey79 2009-10-16T22:49:37Z 2009-10-16T22:49:37Z Would putting the args in your Eclipse run configuration do the trick? http://stackoverflow.com/questions/1424820/maven-built-jar-using-maven-assembly-plug-in-not-always-deployable Comment by javamonkey79 on Maven - built jar using maven-assembly-plug in not always deployable javamonkey79 2009-09-15T03:13:22Z 2009-09-15T03:13:22Z What is the output when you try to run the jar? Have you tried running the maven command with the '-e' flag, if so, are there any obvious exceptions? http://stackoverflow.com/questions/1387121/formatting-for-money-with-settextstring-valueof/1387139#1387139 Comment by javamonkey79 on Formatting (for money) with setText(String.valueOf) javamonkey79 2009-09-07T16:39:30Z 2009-09-07T16:39:30Z Happy to help, yw :) http://stackoverflow.com/questions/1386294/quickly-create-class-from-an-interface-in-eclipse/1386563#1386563 Comment by javamonkey79 on Quickly create class from an interface in eclipse javamonkey79 2009-09-07T00:17:31Z 2009-09-07T00:17:31Z Are you a contributor? You really seem to know quite a lot about it :) http://stackoverflow.com/questions/1338203/automation-in-eclipse/1339162#1339162 Comment by javamonkey79 on Automation in Eclipse javamonkey79 2009-08-28T02:58:10Z 2009-08-28T02:58:10Z I didn't even think of that, but I use External Tools backed with scripts quite a bit too - nice suggestion. +1