John Meagher

3,322
reputation
163 views

Registered User

name John Meagher
member for 1 year
seen 14 hours ago
website
location Maryland, USA
age 34
Java developer and general computer geek
1d
awarded  Popular Question
Dec
15
accepted How to get the list of all attributes of a Java object using BeanUtils introspection?
Nov
28
revised What programming language is most popular today?
typo
Nov
26
awarded  Nice Answer
Nov
19
awarded  Nice Answer
Nov
13
awarded  Good Answer
Oct
8
awarded  Popular Question
Sep
21
awarded  Popular Question
Sep
16
accepted Enforce presence of no-argument constructor at compile time (Java)
Sep
3
comment Why am I getting two very different results from these two functions
You can also try "long long". See gcc.gnu.org/onlinedocs/gcc/Long-Long.html for info.
Sep
3
accepted Why am I getting two very different results from these two functions
Sep
3
answered Why am I getting two very different results from these two functions
Aug
30
answered Has the JavaBean spec been updated to reflect the existence of annotations
Aug
30
revised need help in making this star program using for loop in C
typos
Aug
30
awarded  Yearling
Aug
29
answered How can you test if a thread is the only remaining thread in Java?
Aug
12
revised Move multiple rows from a tree component to a dataGrid.
fix code block
Aug
12
revised Confusion in line about the difference between instance and object in context of Java
edited tags
Aug
9
answered How to make sure a human doesn’t view the results from a PHP script URL?
Aug
7
accepted Joose singleton initialization arguments
Aug
7
answered Timer accuracy in java
Aug
7
answered Joose singleton initialization arguments
Aug
7
comment Java Serializable
The constructor isn't being invoked for the deserialization. The other constructor call is from the line just below the println("Deserialization") call where another new Example is being created.
Aug
7
answered Java Serializable
Aug
6
revised How to create source distribution with self sustainable maven build?
minor typo
Aug
5
comment Java generized class reference
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.
Aug
5
comment Java generized class reference
Odd, it works for me within eclipse, but not when compiled on the command line. I've never seen that before.
Aug
5
comment Java generized class reference
The explicit cast is needed. The general getClass method returns type Class<?>.
Aug
5
answered Java generized class reference
Aug
5
comment Add a single Bash command
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.
Aug
5
comment “Unlimited Strength” JCE Policy Files
They are a great crypto provider, but still require the unlimited strength JCE file in order to work with large keys.
Aug
4
accepted How can I send output to an external/second display in Java?
Aug
3
awarded  Nice Answer
Aug
3
accepted Is it good to place System.out.println into a separate method?
Aug
3
answered Is it good to place System.out.println into a separate method?
Jul
28
comment Closing popups on session expiry
Or just tell your boss that you're brilliant and figured out a way to do it with Javascript instead of AJAX
Jul
28
answered RuntimeException from xmlbeans - can’t find compiled schema
Jul
28
answered Using Java and any external libraries, how can I draw latitude/longitude points onto a graphical representation of the Earth?
Jul
21
awarded  
Jul
18
awarded  Popular Question
Jul
17
comment getting strange stacktrace on compiling groovy class
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.
Jul
14
comment What is the best way to get an invite to Google Voice?
services.google.com/fb/forms/…
Jul
8
comment Is it in an anti-pattern to always use get and set methods to access a class’s own member fields?
@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.
Jul
7
comment Is it in an anti-pattern to always use get and set methods to access a class’s own member fields?
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.
Jul
6
revised Help with database connection
fix formatting
Jul
2
answered Most wanted database feature?
Jul
2
accepted How to convert hex string to float in Java?
Jul
2
revised How to convert hex string to float in Java?
Add full test program
Jul
2
comment How to convert hex string to float in Java?
Also, 10.0 converts to "41200000"
Jul
2
comment How to convert hex string to float in Java?
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.