Tagged Questions
6
votes
10answers
4k views
Programmatic HTMLDocument generation using Java
Does anyone know how to generate an HTMLDocument object programmatically in Java without resorting to generating a String externally and then using HTMLEditorKit#read to parse it? Two reasons I ask:
...
4
votes
4answers
1k views
Is Object constructor called when creating an array in Java?
In Java, an array IS AN Object. My question is... is an Object constructor called when new arrays is being created? We would like to use this fact to instrument Object constructor with some extra ...
0
votes
4answers
40 views
“this” reference escaping during construction?
If I do the following,
final class FooButton extends JButton{
FooButton(){
super("Foo");
addActionListener(new ActionListener(){
@Override
public void ...
0
votes
2answers
106 views
Construct ImmutableSortedSet without warnings
I want construct ImmutableSortedSet. I wrote code smt like:
Set<String> obj = new HashSet<String>();
Comparator<String> myComparator = new Comparator<String>(){
@Override
...