User John Meagher - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T13:12:10Z http://stackoverflow.com/feeds/user/3535 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48997/what-programming-language-is-most-popular-today 5 What programming language is most popular today? John Meagher 2008-09-08T01:54:17Z 2009-12-01T03:59:41Z <p>Based on the tags page here, C# is the big winner.</p> <p><a href="http://freshmeat.net/browse/160/" rel="nofollow">Freshmeat lists</a> far more C projects than anything else. </p> http://stackoverflow.com/questions/1371135/why-am-i-getting-two-very-different-results-from-these-two-functions/1371172#1371172 0 Answer by John Meagher for Why am I getting two very different results from these two functions John Meagher 2009-09-03T02:37:58Z 2009-09-03T02:37:58Z <p>In the version of C you have is a long 32 bits or 64 bits? A long is not always larger than an int in C. </p> http://stackoverflow.com/questions/1353541/has-the-javabean-spec-been-updated-to-reflect-the-existence-of-annotations/1353572#1353572 3 Answer by John Meagher for Has the JavaBean spec been updated to reflect the existence of annotations John Meagher 2009-08-30T10:25:24Z 2009-08-30T10:25:24Z <p>You can access the getter and setter methods through the <a href="http://java.sun.com/javase/6/docs/api/java/beans/PropertyDescriptor.html" rel="nofollow">PropertyDescriptor</a> class in the Java Beans API. From getReadMethod() and getWriteMethod() the annotations on those methods are available. In the end it is a little bit of a mix between the Java Beans API and the Reflection API. </p> http://stackoverflow.com/questions/1351110/how-can-you-test-if-a-thread-is-the-only-remaining-thread-in-java/1351144#1351144 1 Answer by John Meagher for How can you test if a thread is the only remaining thread in Java? John Meagher 2009-08-29T10:57:16Z 2009-08-29T10:57:16Z <p><a href="http://java.sun.com/javase/6/docs/api/java/lang/ThreadGroup.html" rel="nofollow">ThreadGroup</a> has the methods you need. It will be easiest if you can create all the threads in the same ThreadGroup, but that's not really necessary. Thread.currentThread().getThreadGroup() will get you started. The enumerate methods on ThreadGroup are how you can get the list of all the threads.</p> http://stackoverflow.com/questions/42990/regex-to-match-against-something-that-is-not-a-specific-substring 6 Regex to match against something that is not a specific substring John Meagher 2008-09-04T01:22:58Z 2009-08-26T10:18:01Z <p>I am looking for a regex that will match a string that starts with one substring and does not end with a certain substring.</p> <p>Example:</p> <pre><code>// Updated to be correct, thanks @Apocalisp ^foo.*(?&lt;!bar)$ </code></pre> <p>Should match anything that starts with "foo" and doesn't end with "bar". I know about the [^...] syntax, but I can't find anything that will do that for a string instead of single characters. </p> <p>I am specifically trying to do this for Java's regex, but I've run into this before so answers for other regex engines would be great too. </p> <p>Thanks to @Kibbee for verifying that this works in C# as well. </p> http://stackoverflow.com/questions/1251153/how-to-make-sure-a-human-doesnt-view-the-results-from-a-php-script-url/1251161#1251161 9 Answer by John Meagher for How to make sure a human doesn't view the results from a PHP script URL? John Meagher 2009-08-09T11:05:14Z 2009-08-09T11:05:14Z <p>Short answer: you can't.</p> <p>Long answer: You can make it harder to do it by requiring special header values in the HTTP request (setting Accept to application/json is a common one). On the server side just check to make sure that header is set to the value you expect. This will make it so that regular users will get the message you mention and your scripts will work just fine. Of course advanced users will be able to easily work around that sort of limitation so don't rely on it for security. </p> http://stackoverflow.com/questions/1245388/timer-accuracy-in-java/1245398#1245398 3 Answer by John Meagher for Timer accuracy in java John Meagher 2009-08-07T15:24:01Z 2009-08-07T15:24:01Z <p>Have you tried using <a href="http://java.sun.com/javase/6/docs/api/java/lang/System.html#nanoTime%28%29" rel="nofollow">System.nanoTime()</a>?</p> <p>From the Javadoc:</p> <blockquote> <p>Returns the current value of the most precise available system timer, in nanoseconds.</p> <p>This method can only be used to measure elapsed time and is not related to any other notion of system or wall-clock time. The value returned represents nanoseconds since some fixed but arbitrary time (perhaps in the future, so values may be negative). This method provides nanosecond precision, but not necessarily nanosecond accuracy. No guarantees are made about how frequently values change. Differences in successive calls that span greater than approximately 292 years (263 nanoseconds) will not accurately compute elapsed time due to numerical overflow.</p> <p>For example, to measure how long some code takes to execute:</p> <p>long startTime = System.nanoTime(); // ... the code being measured ... long estimatedTime = System.nanoTime() - startTime;</p> </blockquote> http://stackoverflow.com/questions/1210558/joose-singleton-initialization-arguments/1244267#1244267 2 Answer by John Meagher for Joose singleton initialization arguments John Meagher 2009-08-07T11:32:27Z 2009-08-07T11:32:27Z <p>From the documentation for Joose about <a href="http://code.google.com/p/joose-js/wiki/Singletons" rel="nofollow">Singletons</a> and <a href="http://code.google.com/p/joose-js/wiki/BuildingAClass" rel="nofollow">Classes</a>, the Class documentation specifically mentions this syntax as something that is supported. The Singleton documentation does not mention it. Most likely this is something that is not supported by Joose. </p> <p>The problem with adding support for that to the Singleton is that the 2nd caller to the class may not have their initialization parameters applied since there can be only one instance of the class. Whoever invokes it first would have their parameters applied to it. </p> http://stackoverflow.com/questions/1244206/java-serializable/1244209#1244209 4 Answer by John Meagher for Java Serializable John Meagher 2009-08-07T11:16:12Z 2009-08-07T11:16:12Z <p>Having the variables marked as transient keeps them from being serialized. Remove the transient part of the variable declaration and it will work.</p> <p>And you are correct about the constructor not being invoked as part of deserialization. The state of the object is loaded directly from the stream and no constructor is invoked. </p> http://stackoverflow.com/questions/1234783/java-generized-class-reference/1234846#1234846 2 Answer by John Meagher for Java generized class reference John Meagher 2009-08-05T18:12:50Z 2009-08-05T18:12:50Z <p>You need to explicitly cast it to the return type. This works:</p> <pre><code>return (Class&lt;? extends List&lt;String&gt;&gt;) List.class; </code></pre> <p>Yes it just looks wrong. This is just one of the many reasons Java's generics system is a mess. </p> http://stackoverflow.com/questions/1223168/is-it-good-to-place-system-out-println-into-a-separate-method/1223208#1223208 14 Answer by John Meagher for Is it good to place System.out.println into a separate method? John Meagher 2009-08-03T16:10:04Z 2009-08-03T16:10:04Z <p>Instead of creating a simple System.out.println wrapper consider switching to a full logging API. There are many available ( <a href="http://commons.apache.org/logging/" rel="nofollow">Commons Logging</a>, <a href="http://logging.apache.org/log4j/" rel="nofollow">Log4j</a>, <a href="http://www.slf4j.org/" rel="nofollow">SLF4J</a>, and many more). These can easily be configured as simple wrappers around the console that are useful for initial development. Down the road these can be modified to write to files, send emails, write to database, ... These also provide contextual information ( like which class is generating the logs ) that is very useful and a pain to put in on your own.</p> http://stackoverflow.com/questions/49110/how-do-i-write-a-for-loop-in-bash 4 How do I write a for loop in bash John Meagher 2008-09-08T03:10:28Z 2009-07-29T15:44:05Z <p>I'm looking for the basic loop like:</p> <pre><code>for(int i = 0; i &lt; MAX; i++) { doSomething(i); } </code></pre> <p>but for bash. </p> http://stackoverflow.com/questions/1180776/runtimeexception-from-xmlbeans-cant-find-compiled-schema/1191585#1191585 0 Answer by John Meagher for RuntimeException from xmlbeans - can't find compiled schema John Meagher 2009-07-28T01:59:52Z 2009-07-28T01:59:52Z <p>I have seen this problem often when there was a script (ant, maven, ...) that would handle the XMLBeans compilation and another mechanism was used for compiling and running the rest of the code. Sometimes one piece will delete the generated files that XMLBeans is looking for in your stack trace, but will leave the generated XMLBeans Java files so everything will compile and look fine. </p> <p>I have also seen this when using the option to output the source files, but not the class files. The non-Java source files are only generated directly into the class folder or jar file generated by XMLBeans. </p> http://stackoverflow.com/questions/1110074/using-java-and-any-external-libraries-how-can-i-draw-latitude-longitude-points-o/1191545#1191545 0 Answer by John Meagher for Using Java and any external libraries, how can I draw latitude/longitude points onto a graphical representation of the Earth? John Meagher 2009-07-28T01:46:30Z 2009-07-28T01:46:30Z <p>Dealing with geospatial data can get VERY tricky quickly. What approach to take depends a lot on how accurate you need to be when displaying the data. <a href="http://www.pragprog.com/titles/sdgis/gis-for-web-developers" rel="nofollow">GIS for Web Developers</a> is a great book that covers the issues with geospatial data and how to get it from the data source onto the display. It is geared to web-based displays, but the concepts are the same. </p> <p>If you do not need a high degree of accuracy a simple approach is to find an unprojected base map. With a base map it is easy to display lat/long points using simple Cartesian coordinates. </p> <p>If you do need an accurate display then there really isn't a way to avoid the pretty complex libraries. There is a LOT of math involved in converting geospatial data with different datums and projections into something that can be displayed to users. </p> http://stackoverflow.com/questions/1071953/most-wanted-database-feature/1071979#1071979 4 Answer by John Meagher for Most wanted database feature? John Meagher 2009-07-02T00:33:17Z 2009-07-02T00:33:17Z <p>Actual standards that are consistently supported. Data types is one area where this drives me nuts. Also standard functions for common things (NOW(), SYSDATE, ...).</p> http://stackoverflow.com/questions/1071904/how-to-convert-hex-string-to-float-in-java/1071913#1071913 5 Answer by John Meagher for How to convert hex string to float in Java? John Meagher 2009-07-02T00:04:44Z 2009-07-02T00:26:48Z <pre><code>public class Test { public static void main (String[] args) { String myString = "BF800000"; Long i = Long.parseLong(myString, 16); Float f = Float.intBitsToFloat(i.intValue()); System.out.println(f); System.out.println(Integer.toHexString(Float.floatToIntBits(f))); } } </code></pre> http://stackoverflow.com/questions/1071857/how-do-i-svn-add-all-unversioned-files-to-svn/1071903#1071903 0 Answer by John Meagher for How do I svn add all unversioned files to svn? John Meagher 2009-07-02T00:00:19Z 2009-07-02T00:00:19Z <p><a href="http://tortoisesvn.tigris.org/" rel="nofollow">Tortoise SVN</a> has this capability built in, if you're willing to use a non-command-line solution. Just right click on the top level folder and select Add...</p> http://stackoverflow.com/questions/942312/iphone-app-add-voice-recognition/942410#942410 2 Answer by John Meagher for iPhone App › Add voice recognition? John Meagher 2009-06-02T23:26:03Z 2009-06-26T00:06:20Z <p>The best approach will probably be to:</p> <ol> <li>Record the voice on the phone</li> <li>Send the recording to a server that runs the speech recognition software</li> <li>Then return something to the phone to indicate what it should do</li> </ol> http://stackoverflow.com/questions/1038308/how-to-get-the-list-of-all-attributes-of-a-java-object-using-beanutils-introspect/1038367#1038367 1 Answer by John Meagher for How to get the list of all attributes of a Java object using BeanUtils introspection? John Meagher 2009-06-24T13:33:44Z 2009-06-24T13:33:44Z <p>Have you tried <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/ReflectionToStringBuilder.html#toString%28java.lang.Object%29" rel="nofollow">ReflectionToStringBuilder</a>? It looks like is should do what you describe.</p> http://stackoverflow.com/questions/1038321/alternative-to-enum-in-java-1-4/1038335#1038335 2 Answer by John Meagher for Alternative to enum in Java 1.4 John Meagher 2009-06-24T13:29:01Z 2009-06-24T13:29:01Z <p>Apache Commons Lang has an <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/enums/Enum.html" rel="nofollow">Enum class</a> that works well and pretty well covers what Java 5 Enums offer.</p> http://stackoverflow.com/questions/982251/java-cluster-shared-cache/982291#982291 0 Answer by John Meagher for [Java] Cluster Shared Cache John Meagher 2009-06-11T16:52:23Z 2009-06-11T16:52:23Z <p><a href="http://www.danga.com/memcached/" rel="nofollow">Memcached</a> has several <a href="http://code.google.com/p/memcached/wiki/Clients" rel="nofollow">Java Clients</a>. </p> http://stackoverflow.com/questions/978466/what-has-been-your-greatest-productivity-enhancement/978480#978480 2 Answer by John Meagher for What Has Been Your Greatest Productivity Enhancement John Meagher 2009-06-10T22:38:08Z 2009-06-10T22:38:08Z <p>Saying no. Too many people get bogged down and are constantly switching projects. It's from saying yes to every project that comes along. </p> http://stackoverflow.com/questions/34588/how-do-i-change-the-number-of-open-files-limit-in-linux 0 How do I change the number of open files limit in Linux? John Meagher 2008-08-29T16:14:25Z 2009-05-28T21:44:23Z <p>When running my application I sometimes get an error about "too many files open". Running "ulimit -a" reports that the limit is 1024. How do I increase the limit above 1024? </p> <p><strong>Edit</strong> "ulimit -n 2048" results in a permission error.</p> http://stackoverflow.com/questions/25765/java-configuration-framework/34397#34397 11 Answer by John Meagher for Java configuration framework John Meagher 2008-08-29T14:52:01Z 2009-05-12T11:51:36Z <p><a href="http://commons.apache.org/configuration/" rel="nofollow">Apache Commons Configuration</a> works great. It supports having the configuration stored in a wide range of formats on the backend including properties, XML, JNDI, and more. It is easy to use and to extend. To get the most flexibility out of it use a <a href="http://en.wikipedia.org/wiki/Factory%5Fmethod%5Fpattern" rel="nofollow">factory</a> to get the configuration and just use the <a href="http://commons.apache.org/configuration/apidocs/org/apache/commons/configuration/Configuration.html" rel="nofollow">Configuration interface</a> after that.</p> <p>Two feature of Commons Configuration that differentiate it over a straight Properties file is that it support automatic conversion to common types (int, float, String arrays) and it supports property substitution:</p> <pre><code>server.host=myHost server.url=http://${server.host}/somePath </code></pre> http://stackoverflow.com/questions/817420/how-can-i-create-a-temporary-folder-in-java/817423#817423 4 Answer by John Meagher for how can I create a temporary folder in java? John Meagher 2009-05-03T16:22:13Z 2009-05-03T16:22:13Z <p>I've never seen a good solution for this, but this is how I've done it.</p> <pre><code>File temp = File.createTempFile(...); temp.delete(); temp.mkdir(); </code></pre> http://stackoverflow.com/questions/789416/spring-integration-hooking-web-services-to-a-fifo-queue/804345#804345 1 Answer by John Meagher for Spring Integration: Hooking web services to a FIFO queue John Meagher 2009-04-29T21:23:22Z 2009-04-29T21:23:22Z <p>Based on the Javadoc for the <a href="http://static.springframework.org/spring-integration/apidocs/org/springframework/integration/channel/QueueChannel.html" rel="nofollow">QueueChannel</a> here's my attempt at it. This does not address the web service configuration, just the code that would go in the web service back end implementation.</p> <p>This is the code that would add something to a queue (your web service).</p> <pre><code>public class TheWebService { // Could also use QueueChannel, or PollableChannel here instead // just picked the most general one private org.springframework.integration.channel.MessageChannel queue; public void yourWebServiceMethod(SomeArg arg) { SomeObjectToPassThatExtendsMessage passed = someInitialProcessing(arg); queue.send(passed); } } </code></pre> <p>This is the code that would go in your receiver/processor/dequeue class</p> <pre><code>public class TheProcessor { // Could also use QueueChannel here instead // just picked the most general one private org.springframework.integration.channel.PollableChannel queue; // This method needs to be setup to be called by a separate thread. // See http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/scheduling/package-summary.html // and it's sub-packages. public void someProcessingPoller() { SomeObjectToPassThatExtendsMessage passed = queue.receive(); // Do some processing with the passed object. } } </code></pre> <p>The Spring configuration for this would look something like</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans xmlns="http://www.springframework.org/schema/beans"&gt; &lt;bean id="webService" class="mypackage.TheWebService"&gt; &lt;property name="queue" ref="queue" /&gt; &lt;/bean&gt; &lt;bean id="processor" class="mypackage.TheProcessor "&gt; &lt;property name="queue" ref="queue" /&gt; &lt;/bean&gt; &lt;bean id="queue" class="org.springframework.integration.channel.QueueChannel"/&gt; &lt;/beans&gt; </code></pre> http://stackoverflow.com/questions/802348/subversion-getting-the-client-is-too-old-even-though-all-devs-are-running-the/802353#802353 2 Answer by John Meagher for Subversion: Getting "The client is too old" even though all devs are running the same svn version John Meagher 2009-04-29T13:25:20Z 2009-04-29T13:25:20Z <p>TortoiseSVN 1.6 uses a newer version of the subversion client than 1.5. That's probably what's causing your error.</p> <p>Another possibility is that the build script is using a different client. </p> http://stackoverflow.com/questions/802315/enforce-presence-of-no-argument-constructor-at-compile-time-java/802350#802350 3 Answer by John Meagher for Enforce presence of no-argument constructor at compile time (Java) John Meagher 2009-04-29T13:22:51Z 2009-04-29T13:22:51Z <p>There is no way to enforce constructor requirements at compile time. At runtime you can check class.getConstructors() and ensure there is one that has no args (or just catch the exception like you are in the sample code). </p> <p>Usually the no-arg constructor requirement is just listed in the Javadoc of the base class or interface. </p> http://stackoverflow.com/questions/787070/how-to-properly-manage-tomcat-web-apps-inside-eclipse/802318#802318 1 Answer by John Meagher for How to properly manage Tomcat web apps inside Eclipse? John Meagher 2009-04-29T13:13:16Z 2009-04-29T13:13:16Z <p>You can use Eclipse and Tomcat in the way you mention. First the basics of how to set it up:</p> <ol> <li>In the Servers view setup a new Tomcat server pointing to your TOMCAT_HOME</li> <li>Make sure your project is an Eclipse "web project". You may need to create a dummy one and copy over some of the files in .settings (look at the wst files). </li> <li>Deploy your project to Tomcat by right clicking on the server in the Servers view and "Add and Remove Projects..." to add your project to the server.</li> </ol> <p>You can run your server and test it out just like you were running Tomcat outside of Eclipse. If you run the server in Debug mode you can set breakpoints and step through the code.</p> <p>As for when you will need to restart the server Eclipse is usually pretty good about auto-deploying the changes. You will pretty much never need to restart for changes to jsp pages. If you change a class it will auto-deploy the change (usually) if you change the body of a method. If you change the signature of a class (add or remove a method or change args for it) you will almost always need to restart. Any changes to configuration files (web.xml or similar) will also almost always require a restart. </p> <p>To restart just click on the "Debug" or "Run" button in the Server view. All your changes will be redeployed into Tomcat.</p> <p>One thing to watch out for is that in the default configuration your "webapp" directory in TOMCAT_HOME will not be used. Instead it will use a folder under your Eclipse workspace directory (WORKSPACE/.metadata/.plugins/org.eclipse.wst.server.core/tmp0).</p> http://stackoverflow.com/questions/685836/java-on-openvms/717696#717696 1 Answer by John Meagher for Java on OpenVMS? John Meagher 2009-04-04T19:48:05Z 2009-04-04T19:48:05Z <p>Eclipse relies on native Java extensions that do not appear to have been ported to OpenVMS. Don't give up though. Java runs on OpenVMS (at least 1.5 according to a Google search). </p> <p>NetBeans has a Java only edition that <em>should</em> work on OpenVMS. On the <a href="http://www.netbeans.org/downloads/" rel="nofollow" title="NetBeans download page">NetBeans Download Page</a> select the OS Independent Zip option for the platform. </p> http://stackoverflow.com/questions/1371135/why-am-i-getting-two-very-different-results-from-these-two-functions/1371172#1371172 Comment by John Meagher on Why am I getting two very different results from these two functions John Meagher 2009-09-03T12:09:49Z 2009-09-03T12:09:49Z You can also try &quot;long long&quot;. See <a href="http://gcc.gnu.org/onlinedocs/gcc/Long-Long.html" rel="nofollow">gcc.gnu.org/onlinedocs/gcc/Long-Long.html</a> for info. http://stackoverflow.com/questions/1244206/java-serializable/1244209#1244209 Comment by John Meagher on Java Serializable John Meagher 2009-08-07T11:21:38Z 2009-08-07T11:21:38Z The constructor isn't being invoked for the deserialization. The other constructor call is from the line just below the println(&quot;Deserialization&quot;) call where another new Example is being created. http://stackoverflow.com/questions/1234783/java-generized-class-reference/1234846#1234846 Comment by John Meagher on Java generized class reference John Meagher 2009-08-05T18:30:41Z 2009-08-05T18:30:41Z With the -nowarn option it works for the case of returning someList.getClass(), but I still get the same error you are seeing when trying it with List.class. http://stackoverflow.com/questions/1234783/java-generized-class-reference/1234846#1234846 Comment by John Meagher on Java generized class reference John Meagher 2009-08-05T18:28:09Z 2009-08-05T18:28:09Z Odd, it works for me within eclipse, but not when compiled on the command line. I've never seen that before. http://stackoverflow.com/questions/1234783/java-generized-class-reference/1234854#1234854 Comment by John Meagher on Java generized class reference John Meagher 2009-08-05T18:15:39Z 2009-08-05T18:15:39Z The explicit cast is needed. The general getClass method returns type Class&lt;?&gt;. http://stackoverflow.com/questions/1234783/java-generized-class-reference/1234832#1234832 Comment by John Meagher on Java generized class reference John Meagher 2009-08-05T18:14:36Z 2009-08-05T18:14:36Z The explicit cast is needed. The general getClass method returns type Class&lt;?&gt;. http://stackoverflow.com/questions/1234424/add-a-single-bash-command Comment by John Meagher on Add a single Bash command John Meagher 2009-08-05T16:55:03Z 2009-08-05T16:55:03Z Actually you can add ~/et to your PATH even if there are non-executable files in there. Bash is smart enough to not execute them. http://stackoverflow.com/questions/1179672/unlimited-strength-jce-policy-files/1233011#1233011 Comment by John Meagher on "Unlimited Strength" JCE Policy Files John Meagher 2009-08-05T12:51:03Z 2009-08-05T12:51:03Z They are a great crypto provider, but still require the unlimited strength JCE file in order to work with large keys. http://stackoverflow.com/questions/1191534/closing-popups-on-session-expiry/1191564#1191564 Comment by John Meagher on Closing popups on session expiry John Meagher 2009-07-28T02:05:58Z 2009-07-28T02:05:58Z Or just tell your boss that you're brilliant and figured out a way to do it with Javascript instead of AJAX http://stackoverflow.com/questions/1127782/getting-strange-stacktrace-on-compiling-groovy-class Comment by John Meagher on getting strange stacktrace on compiling groovy class John Meagher 2009-07-17T16:40:32Z 2009-07-17T16:40:32Z I took a Grails class with Scott Davis a little while ago. One of the biggest things I learned during class is that if you ever get a really weird error that just doesn't make sense do a clean rebuild of your project. About 90% of the time something got out of sync and just needed to be recompiled. http://stackoverflow.com/questions/1127051/what-is-the-best-way-to-get-an-invite-to-google-voice Comment by John Meagher on What is the best way to get an invite to Google Voice? John Meagher 2009-07-14T18:14:25Z 2009-07-14T18:14:25Z <a href="https://services.google.com/fb/forms/googlevoiceinvite/" rel="nofollow">services.google.com/fb/forms/&hellip;</a> http://stackoverflow.com/questions/1095034/is-it-in-an-anti-pattern-to-always-use-get-and-set-methods-to-access-a-classs-ow/1095041#1095041 Comment by John Meagher on Is it in an anti-pattern to always use get and set methods to access a class's own member fields? John Meagher 2009-07-08T02:22:42Z 2009-07-08T02:22:42Z @lumpynose I forget how it was setup, the annotations may have been on the getters. It was also using JPA rather than Hibernate directly, so that may have changed things. My points stands though, unless you declare your class as final then you need to think about what will happen if someone overrides one of your public methods. http://stackoverflow.com/questions/1095034/is-it-in-an-anti-pattern-to-always-use-get-and-set-methods-to-access-a-classs-ow/1095041#1095041 Comment by John Meagher on Is it in an anti-pattern to always use get and set methods to access a class's own member fields? John Meagher 2009-07-07T21:48:59Z 2009-07-07T21:48:59Z I've seen specific problems with this when using Hibernate for ORM. Code that was using the variables directly was always getting null values, code that used the getters always worked. Hibernate was supplying a proxy class to support lazy loading. http://stackoverflow.com/questions/1071904/how-to-convert-hex-string-to-float-in-java/1071913#1071913 Comment by John Meagher on How to convert hex string to float in Java? John Meagher 2009-07-02T00:24:08Z 2009-07-02T00:24:08Z Also, 10.0 converts to &quot;41200000&quot; http://stackoverflow.com/questions/1071904/how-to-convert-hex-string-to-float-in-java/1071913#1071913 Comment by John Meagher on How to convert hex string to float in Java? John Meagher 2009-07-02T00:22:49Z 2009-07-02T00:22:49Z Also, if my memory is working right, the top bit in an IEEE-754 float is the sign bit so the sample would have to be a negative number.