Andrzej Doyle

7,817
reputation
370 views

Registered User

name Andrzej Doyle
member for 1 year
seen 15 hours ago
website
location London, UK
age 26
Java Developer for Markit
21h
awarded  Nice Answer
21h
revised Choosing Java tools (IDE and compiler) for beginners
Changed title to match the bolded description of the question!
22h
accepted #define in Java
23h
answered #define in Java
23h
comment StringIndexOutOfBoundsException: String index out of range: 0
Chente - this error can only happen if another is the empty string. Check your assertion more closely (ideally with a debugger so you can see exactly what's going on) and/or implement Itay's suggestions and see how the issue goes away.
23h
answered how to restrict user going back to previous page when clicked on browser back button?
1d
comment How to convert nested List into multidimensional array?
For example, new ArrayList<String>().toArray() returns an Object[]. Passing in the type key, such as new ArrayList<String>().toArray(new String[0]) means that the return value is a String[]. You just need to figure out how to use this concept in your current code that's producing an Object[][][][].
1d
answered Regression testing for schema (xsd) equivalence
1d
revised Regression testing for schema (xsd) equivalence
Updated title as it's essentially a regression test I'm after
1d
accepted Is inspecting file structure and changes to the system registry considered reverse-engineering?
1d
comment Regression testing for schema (xsd) equivalence
@jon - probably not as the classes don't encompass the entirety of what the schema dictates. It's an interesting idea (i.e. make sure that each type has the same bean properties) that would be good for checking for some classes of errors, but I don't think it goes the whole way (the fact it doesn't actually do any XML validation makes me nervous).
1d
asked Regression testing for schema (xsd) equivalence
1d
comment If class Number is abstract why I’m I allowed to write Number n = 5?
@Carlos - I meant concrete class, not static; I've fixed this typo ("thinko"?), thanks for pointing it out. AFAIK there's no such thing as a static class per se (ignoring static inner classes which are a separate thing).
1d
revised If class Number is abstract why I’m I allowed to write Number n = 5?
fixed typo
2d
comment What’s the most robust content platform you’ve leveraged?
"Enterprise", "leveraged", "scalable", "adds value"? I think you need to synergize your core competancies to align mission-critical resources with the organizational ecosystem leading to enhanced tactical opportunity wins and empowered stakeholders.
2d
answered How to easily copy one type of list into another type?
2d
comment Java abstract static Workaround
@twolfe: your "trivial" methods aren't trivial, because of the problems you're running into here. If you need polymorphism, they cannot (and should not) be static methods.
2d
comment Sending SMS through Mobile Java Application
In my opinion, this is not really an appropriate level of question for SO. It reads more like an advert, or possibly "how should I do my job", rather than a request for technical advice from peers.
2d
answered Get URL parameters and insert into form action url with javascript
2d
answered If class Number is abstract why I’m I allowed to write Number n = 5?
2d
revised Communication between two Web Services
added 992 characters in body
2d
revised Communication between two Web Services
added 1208 characters in body
2d
comment Instantiating a class assignable to Collection
+1 Agreed - that's the whole point of casting, to tell the compiler that you've checked and now know that a variable is of a more specific type than its existing declaration. Since you've checked the class is assignable as a Collection, casting the clazz in your code snippet is exactly what I'd do.
2d
answered Communication between two Web Services
Dec
13
answered Basic java question : Type casting
Dec
13
awarded  Yearling
Dec
11
revised Is there always room to improve/optimize the code?
Fixed psuedocode typo
Dec
11
comment Is there always room to improve/optimize the code?
And what about puts("Hello " + location); because we expect some of our alien customers to require this flexibility... further proving the point.
Dec
11
answered Is there always room to improve/optimize the code?
Dec
10
awarded  Enlightened
Dec
10
awarded  Nice Answer
Dec
10
comment Object-Oriented Execution
Fixed it for you. Be bugged no more! :-)
Dec
10
revised Object-Oriented Execution
Corrected sp.execute (de-bugged jball)
Dec
10
answered is the Java HashMap keySet() iteration order consistent?
Dec
10
accepted What is a covariant return type?
Dec
10
answered What is a covariant return type?
Dec
10
revised Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?
added 1310 characters in body
Dec
10
comment Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?
+1; Michael, I've added the equivalent code from JDK 5 to illustrate the point; revert my edit if you feel it's not appropriate in your answer.
Dec
10
revised Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?
Added JDK 5 comparison
Dec
10
answered Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?
Dec
9
comment Moving from state to state in this automaton via HashMap
ibm.com/developerworks/java/…
Dec
9
answered Moving from state to state in this automaton via HashMap
Dec
9
revised Moving from state to state in this automaton via HashMap
Cleaned up first code block (mainly removed empty lines so it displays without scrolling
Dec
9
revised Why is getEntry(Object key) not exposed on HashMap?
added 487 characters in body
Dec
9
comment Why is getEntry(Object key) not exposed on HashMap?
I'm saying that the problem will still exist with Strings and other value objects; the solution you've proposed won't resolve the issue (asides from the fact that the problem the querent posed is not the one that needs solving anyway).
Dec
9
comment How to map a database query into an Object [in Java]?
Then those subproperties should be different classes; e.g. in the above case, a ServiceUser is a subclass of User and contains an otherprops Map and a reference to a Service instance etc. A single class itself should typically be defined in a single table, even though you may need to look up multiple tables to fully populate its dependencies.
Dec
9
comment Why can’t I find the API documentation for com.sun.* classes in rt.jar?
+1 - the public interface to them, that is the methods with a well-defined locked-down implementation that you can call with confidence is documented; it's the empty set. Your code should not even know (explicitly) about the existence of these classes, and casting references to them should be setting off warning bells rather than requests for documentation. ;-)
Dec
9
comment Why is getEntry(Object key) not exposed on HashMap?
That may not necessarily be the problem here - for example, a String key would still lead to the same problems declared above (unless you `intern`ed all the Strings which is a bad idea); and I've never heard someone say that Strings are unsuitable map keys.
Dec
9
comment Why is getEntry(Object key) not exposed on HashMap?
I suspect what is desired is to have all calls for equal objects (i.e. that would map to the same key within the hash map), get access to a consistent object obstance for synchronization. The querent hasn't said why he wants this but it sounds like some kind of attempt to prevent two threads from modifying the mapping for a given key at once.
Dec
9
answered Why is getEntry(Object key) not exposed on HashMap?