Fabian Steeg

5,210
reputation
838 views

Registered User

name Fabian Steeg
member for 1 year
seen 1 hour ago
website
location Cologne, Germany
age 29
Code or model? Mu.
15h
comment Why should I care that Java doesn’t have reified generics?
Hm, I would tend to avoid overloading with identical number of parameters altogether, and prefer something like myStringsMethod(List<String> input) and myIntegersMethod(List<Integer> input) even if overloading for such a case was possible in Java.
Dec
13
answered Any reason for having “val capacity : Int” instead of “val Int Capacity” in Scala
Dec
11
answered A list of things from Java that we will now happily bid good-bye after Scala
Dec
7
answered How do you uninstall the Scala Eclipse plugin?
Dec
6
awarded  Mortarboard
Dec
3
comment Is this a known pattern?
But for the template pattern, shouldn't there be subclassing involved (to have subclasses specify how the template method is filled)? I'd say what you are referring to is just plain composition.
Dec
3
comment Is this a known pattern?
Wouldn't the strategy pattern imply that you can exchange the strategy (e.g. by passing the strategy to the constructor)? Whereas here it is fixed.
Dec
2
answered It is a bad practice to use Sun’s proprietary Java classes?
Dec
2
revised Java milli second precision
Added details based on comment
Dec
2
comment Java milli second precision
Right, to get time stamps it would probably make sense to combine it with System.currentTimeMillis()
Dec
2
comment Eclipse: How to go to a error using only the keyboard (keyboard-shortcut)?
Cool, this is very useful! Unfortunately on the Mac, Cmd-, opens the preferences. But the shortcuts can be changed in Preferences -> Keys -> Next and Previous (I've just set them to Cmd-. and Cmd-- for previous and next)
Dec
2
answered Java milli second precision
Nov
30
comment Remove Characters from the end of a String Scala
Plus you'd need to wrap the string into a StringBuilder to get a reverse method.
Nov
26
answered What technology I should use to develop small Java webservice?
Nov
26
comment What technology I should use to develop small Java webservice?
Also I'm wondering: to actually make this do something, don't we need JAX-WS?
Nov
26
comment What technology I should use to develop small Java webservice?
To use the @WebService annotation with Java 5 you'll also need the JSR 181 implementation. If you use Java 6 it's included, and so is JAXB. I guess what I'm trying to say is: you either need Java 5 plus JAXB and JSR 181 or Java 6.
Nov
24
comment iterator for loops with break
Yes, please, no breaks or even labels!
Nov
24
accepted Does javadoc have an equivalent to <![CDATA[ … ]]> ?
Nov
23
answered How many times can classes be nested within a class?
Nov
23
accepted How to launch eclipse from a command line on MacOS with a workspace pathname
Nov
23
answered How to launch eclipse from a command line on MacOS with a workspace pathname
Nov
23
answered R text editors for introductory statistics courses
Nov
23
accepted How do I go about creating a compiler/editor in Eclipse?
Nov
23
answered Finding GIT installer for Ubuntu.
Nov
23
answered Does javadoc have an equivalent to <![CDATA[ … ]]> ?
Nov
21
answered Can’t run eclipse on netbook MSi wind! HELP
Nov
20
answered Two Eclispse projects -> One Eclipse Plug-in
Nov
17
revised How to hide interface methods in the web service when using @WebService’s `endpointInterface` attribute?
Added exact code that fixed the problem
Nov
17
comment How to hide interface methods in the web service when using @WebService’s `endpointInterface` attribute?
Perfect, thanks a lot!
Nov
17
comment How to hide interface methods in the web service when using @WebService’s `endpointInterface` attribute?
Yes, but even those not annotated are exposed.
Nov
17
asked How to hide interface methods in the web service when using @WebService’s `endpointInterface` attribute?
Nov
16
answered How do I go about creating a compiler/editor in Eclipse?
Nov
16
answered Where to set maxarraysize for java webservices?
Nov
16
answered Which code generation tools do you use?
Nov
15
revised Java: how to represent graphs?
typo
Nov
12
answered Launching jEdit From Java Swing App Using Runtime.getRuntime().exec()
Nov
11
answered clear() methods in Java
Nov
11
answered eclipse workspace is closed problem
Nov
11
revised eclipse workspace is closed problem
edited tags
Nov
10
awarded  Tumbleweed
Nov
10
revised Regular expressions???
second edition, link, cover
Nov
10
comment What tools does Linux programmer use to develop programs?
Wouldn't agree on the 'Once inside the IDE, the outside OS doesn't matter any more'. I use and enjoy my Bash a lot, even if I spend most my time inside Eclipse.
Nov
9
revised How to marshal a DataHandler annotated as @XmlAttachmentRef with JAXB?
edited tags
Nov
9
revised Java Generics
added 134 characters in body; deleted 12 characters in body
Nov
9
answered Backslash problem with String.replaceAll
Nov
8
awarded  Nice Answer
Nov
8
answered How to get the name of the calling class in Java?
Nov
6
revised Birt report file path
edited tags
Nov
6
accepted Java Web Services: sending files using DataHandler class
Nov
6
answered Java Web Services: sending files using DataHandler class