Search Results

10
votes
4answers
254 views

Higher-kinded generics in Java

Suppose I have the following class: public class FixExpr { Expr<FixExpr> in; } Now I want to introduce a generic argument, abstracting over the use of Expr …
1
vote

How do I get the image paint/paintComponent generates?

If you call getImage too early, your component will not have been displayed yet and will still have a 0 width and height. Have you made sure you're calling it at a sufficient late time? Try printin …
0
votes

Java VNC Applet

The accepted answer is wrong — it is perfectly possible to build a VNC server in Java. Yes, Java is sandboxed, but this doesn't mean it cannot access screen contents if you want it to! …
1
vote

scrollbar action in java

Try setting the caret location to the last position everytime you append: textArea.setCaretLocation(textArea.getText().length()); …
1
vote

Parser, Generator for Java with the following requirements…

Maybe you're looking for parser combinators instead of parser generators? See this paper …
0
votes

How to select a file path using regex

"file:.*/[^/]*"/> …
0
votes

Changing the current working directory in Java?

Try using the "cd" command through a process. …
2
votes

What do I return if the return type of a method is Void? (Not void!)

To make clear why the other suggestions you gave don't work: Void.class and Void.TYPE point to the same object and are of type Class<Void>, not …
0
votes

how to obtain declaring class name for a loop using antlr

How do you find out the loops in the first place? If you use some sort of bytecode inspector, then you need to tell it what class to inspect first, right? So whenever you are inspecting a loop, you …
1
vote

Is there a way to see what the values of the arguments that are sent into a method in Java?

You will need to elaborate a bit more. Are you building your own compiler from Java source to bytecode? Are you building your own bytecode interpreter? Do you want to hook into an existing bytecode …