User javamonkey79 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T17:46:40Zhttp://stackoverflow.com/feeds/user/27657http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889714/maven-how-to-get-all-transitive-dependencies-programatically-in-a-mojo1Maven: How to get all transitive dependencies programatically in a MOJO [closed]javamonkey792009-12-11T17:45:53Z2009-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’s dependency hierarchy within a plugin.</a> </p>
</blockquote>
<p>The dependency:tree plugin:goal has an option 'verbose' which displays all conflicts & 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#18656470Answer by javamonkey79 for Creating a Squircle javamonkey792009-12-08T08:58:08Z2009-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 < yPoints.length; i++ ) {
g.drawString( "*", xPoints[ i ], yPoints[ i ] );
}
for( int i = 0; i < 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#18640070Answer by javamonkey79 for Creating a Squircle javamonkey792009-12-08T01:27:32Z2009-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-change0SWT version of: getOppositeComponent on focus changejavamonkey792009-12-07T23:53:30Z2009-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-jdbctemplate1identity from sql insert via jdbctemplatejavamonkey792009-11-03T07:52:05Z2009-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#40750772Answer by javamonkey79 for What's your most controversial programming opinion?javamonkey792009-01-02T17:35:49Z2009-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#16659212Answer by javamonkey79 for identity from sql insert via jdbctemplatejavamonkey792009-11-03T08:15:55Z2009-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-1HTML\CSS Coupon Scriptjavamonkey792009-07-21T06:01:09Z2009-10-19T19:46:27Z
<p>Does anyone know how to create a coupon (printable is even better) with HTML & 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#15228851Answer by javamonkey79 for Best way to parse an XML String in Java?javamonkey792009-10-05T23:18:42Z2009-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-windows4Command line recursive rename\move in windows?javamonkey792008-10-16T21:42:55Z2009-09-15T23:08:29Z
<p>Does anyone know of a simple & 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#13975740Answer by javamonkey79 for Create Database :: ERRORjavamonkey792009-09-09T04:48:44Z2009-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#13871391Answer by javamonkey79 for Formatting (for money) with setText(String.valueOf)javamonkey792009-09-07T00:48:19Z2009-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#13558437Answer by javamonkey79 for How is an instance initializer different from a constructor?javamonkey792009-08-31T04:50:56Z2009-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#13382641Answer by javamonkey79 for Automation in Eclipsejavamonkey792009-08-27T00:21:18Z2009-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#2716411Answer by javamonkey79 for Running External Apps on save in Eclipsejavamonkey792008-11-07T09:46:11Z2009-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-blocking1java thread blockingjavamonkey792009-08-14T18:26:36Z2009-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-streams0Java threading question - listening to n error streamsjavamonkey792009-08-05T21:04:14Z2009-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-comparison2SQL Server JBDC Driver comparisonjavamonkey792009-07-29T22:40:18Z2009-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#11356580Answer by javamonkey79 for MySQL select "accumulated" columnjavamonkey792009-07-16T06:00:54Z2009-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#11154032Answer by javamonkey79 for How to draw a rectangle on a java applet using mouse drag event and make it stayjavamonkey792009-07-12T06:20:16Z2009-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 < 0 ? this.x1
: this.x2;
this.y = height < 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#11153662Answer by javamonkey79 for How to draw a rectangle on a java applet using mouse drag event and make it stayjavamonkey792009-07-12T05:14:59Z2009-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< Rectangle > rectangles = new ArrayList< Rectangle >();
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 < 0 ? this.x1
: this.x2, height < 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#11122191Answer by javamonkey79 for How to get a column from a 2D java array?javamonkey792009-07-10T22:03:41Z2009-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#11078381Answer by javamonkey79 for JProgressBarjavamonkey792009-07-10T05:20:32Z2009-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#11077442Answer by javamonkey79 for How to avoid OOM (Out of memory) error when retrieving all records from huge table?javamonkey792009-07-10T04:51:33Z2009-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#11015580Answer by javamonkey79 for How do you explain your job to non-programmers?javamonkey792009-07-09T02:32:35Z2009-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#11014470Answer by javamonkey79 for Java: compare object valuesjavamonkey792009-07-09T01:47:19Z2009-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#11014550Answer by javamonkey79 for SQL: Using an INSERT within a SELECT statementjavamonkey792009-07-09T01:50:42Z2009-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#11014251Answer by javamonkey79 for Practicing regexjavamonkey792009-07-09T01:41:04Z2009-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#10953744Answer by javamonkey79 for Eliminating unnecessary log4j setup outputjavamonkey792009-07-07T23:34:02Z2009-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><log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="true">
</code></pre>
<p>Turn the debug to false.</p>
http://stackoverflow.com/questions/1078238/maven2-how-to-run-some-goal-before-plugin/1078303#10783031Answer by javamonkey79 for Maven2 how to run some goal before plugin?javamonkey792009-07-03T08:11:13Z2009-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#1492023Comment by javamonkey79 on How to get access to Maven's dependency hierarchy within a plugin.javamonkey792009-12-11T18:44:01Z2009-12-11T18:44:01Z+1 Very nice, thanks! However, the snippet contains a small error:
List< DependencyNode > nodes = visitor.getNodes();
Above the for loop.http://stackoverflow.com/questions/1863711/swt-version-of-getoppositecomponent-on-focus-change/1863739#1863739Comment by javamonkey79 on SWT version of: getOppositeComponent on focus changejavamonkey792009-12-08T01:20:34Z2009-12-08T01:20:34ZBut 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#1863739Comment by javamonkey79 on SWT version of: getOppositeComponent on focus changejavamonkey792009-12-08T00:32:41Z2009-12-08T00:32:41ZUnfortunately, the algorithm is in focusLost(...) so this will not help.http://stackoverflow.com/questions/1863727/creating-a-squircle/1863749#1863749Comment by javamonkey79 on Creating a Squircle javamonkey792009-12-08T00:20:33Z2009-12-08T00:20:33ZMeh, 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#1863749Comment by javamonkey79 on Creating a Squircle javamonkey792009-12-08T00:07:06Z2009-12-08T00:07:06Z+1 for stating the obvious :)http://stackoverflow.com/questions/1863727/creating-a-squircleComment by javamonkey79 on Creating a Squircle javamonkey792009-12-08T00:04:25Z2009-12-08T00:04:25ZPlease 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#1810542Comment by javamonkey79 on Eclipse: Most useful refactoringsjavamonkey792009-12-07T23:58:23Z2009-12-07T23:58:23ZFYI - (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+fhttp://stackoverflow.com/questions/1665846/identity-from-sql-insert-via-jdbctemplate/1718651#1718651Comment by javamonkey79 on identity from sql insert via jdbctemplatejavamonkey792009-11-12T01:15:45Z2009-11-12T01:15:45ZWow, I didn't really know about that class - kinda neat. Thanks. +1http://stackoverflow.com/questions/1665846/identity-from-sql-insert-via-jdbctemplate/1668361#1668361Comment by javamonkey79 on identity from sql insert via jdbctemplatejavamonkey792009-11-03T16:21:42Z2009-11-03T16:21:42ZThat would be the "one liner" I am looking for here. Nice. Sad thing is I saw the link but glossed past it due to this: "part of the JDBC 3.0 standard". (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#1580894Comment by javamonkey79 on How to install a custom plug-in in Eclipse Ganymede?javamonkey792009-10-16T23:47:29Z2009-10-16T23:47:29Zaka, "the old school way" :)http://stackoverflow.com/questions/1580758/javaeclipse-how-do-you-debug-a-java-program-that-is-receiving-piped-redirectedComment by javamonkey79 on Java+Eclipse: how do you debug a java program that is receiving piped/redirected stdin?javamonkey792009-10-16T22:49:37Z2009-10-16T22:49:37ZWould 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-deployableComment by javamonkey79 on Maven - built jar using maven-assembly-plug in not always deployablejavamonkey792009-09-15T03:13:22Z2009-09-15T03:13:22ZWhat 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#1387139Comment by javamonkey79 on Formatting (for money) with setText(String.valueOf)javamonkey792009-09-07T16:39:30Z2009-09-07T16:39:30ZHappy to help, yw :)http://stackoverflow.com/questions/1386294/quickly-create-class-from-an-interface-in-eclipse/1386563#1386563Comment by javamonkey79 on Quickly create class from an interface in eclipsejavamonkey792009-09-07T00:17:31Z2009-09-07T00:17:31ZAre you a contributor? You really seem to know quite a lot about it :)http://stackoverflow.com/questions/1338203/automation-in-eclipse/1339162#1339162Comment by javamonkey79 on Automation in Eclipsejavamonkey792009-08-28T02:58:10Z2009-08-28T02:58:10ZI didn't even think of that, but I use External Tools backed with scripts quite a bit too - nice suggestion. +1