0
votes
3answers
664 views
Create Annotation instance with defaults, in Java
How can I create an instance of the following annotation (with all fields set to their default value).
@Retention( RetentionPolicy.RUNTIME )
public @interface Settings {
…
5
votes
How to find unused/dead code in java projects
I would instrument the running system to keep logs of code usage, and then start inspecting code that is not used for months or years.
For example if you are interested in unused classes, a …
0
votes
How can I enumerate all classes in a package and add them to a List?
You cannot. Why? Because Java classes are loaded dynamically from the class path.
There is no such thing as "the complete set of classes in a package". At any time, you or …
2
votes
Can I make JUnit more verbose?
Hard to be done. All assert methods are static members of the class Assert, which implies that the RunNotifier (which counts the successful and failed tests) is not within reach.
If you don …
7
votes
Java: Easiest way to merge a release into one jar-file
Ant's zipfileset does the job
<jar id="files" jarfile="all.jar">
<zipfileset src="first.jar" includes="**/*.java **/*.class"/>
<zipfileset src="s …
0
votes
Is there a Java standard “both null or equal” static method?
I have this method.
For the sake of saving character calories, its named eq.
…
0
votes
Which is the best alternative for Java Serialization?
Personally, I use Fame a lot, since it features interoperability with Smalltalk (both VW and Squeak) and Python. (Disclaimer, I am the m …
1
vote
Mixing different versions of Java libraries
JarJar to the rescue!
An ant taks that both 1) packs many jars into one, and 2) allows you to rename dependencies in class file …
6
votes
Java: `enum` vs `String` as Parameters
If your set of parameters is limited and known at compile time, use enum.
If your set of parameters is open and unkown at compile time, use strings.
…
1
vote
Last iteration of for loop in java
You need Class Separator.
Separator s = new Separator(", ");
for(int i : array)
{
…
0
votes
What’s the best way to build a string of delimited items in Java?
Use StringBuilder and Class Separator.
StringBuilder $ = new StringBuilder();
Separato …
3
votes
Java: What is the best way to filter a Collection?
With the ForEach DSL you may write
import static ch.akuhn.util.query.Query.select;
import static ch.akuhn.util.query.Query.$result;
import ch.akuhn.util.query.Select;
Collection< …
2
votes
Plugging in to Java compilers
It can be done.
Take a look at my blog post Roman Numerals, in our Java where an annotation …
1
vote
Is there any way other than instanceof operator for object type comparison in java?
if ( someClass.isAssignableFrom( obj.getClass() ) )
is equivalent to
if ( obj instanceof Foo )
Use instanceof if the class t …
0
votes
javac.exe AST programmatic access example
If you want to rewrite the AST from within javac, take a look at this hack where an annotation proc …
