Tagged Questions
Anonymous Inner Classes are local classes that are declared and instantiated inline.
15
votes
2answers
3k views
keyword for the outer class from an anonymous inner class?
In the following snippet
public class a{
public void otherMethod(){}
public void doStuff(String str, InnerClass b){}
pubic void method(a){
doStuff("asd",
new InnerClass(){
public ...
11
votes
2answers
353 views
re More than one instance of an anonymous inner class
This is in relation to my answer to a question provided in this thread: Are Inner Classes lightweight?
I remember from my reading that if you can only create one object from a single anonymous inner ...
8
votes
2answers
640 views
Anonymous inner classes in C#
I'm in the process of writing a C# Wicket implementation in order to deepen my understanding of C# and Wicket. One of the issues we're running into is that Wicket makes heavy use of anonymous inner ...
5
votes
2answers
386 views
Anonymous Inner Classes Inside Methods
Please have a look at following code :
import java.util.ArrayList;
import java.util.List;
class Main{
public static <T> List<T> modifiedList(final List<T> list){
...
5
votes
3answers
991 views
What is this type of method overriding called in Java?
I'm relatively new to Java and I'm using a new API. I came across this method override and I'm not sure what this is called:
public void exampleMethod() {
Button loginButton = new ...
4
votes
6answers
163 views
Why can't I hold EnumMap entries via a “for” loop, even if I use “final”? Best workaround?
I'm having some strange behaviour.
[UPDATE: Full runnable example given:]
package finaltestwithenummapentry;
import java.util.ArrayList;
import java.util.EnumMap;
import java.util.Map.Entry;
...
4
votes
4answers
80 views
Does an anonymous inner class always capture a reference to “this” (outer) object when accessing its primitives etc.?
If I have
[EDIT: added the type definition for "Inner"]
interface Inner{
public void execute();
}
class Outer{
int outerInt;
public void hello(){
Inner inner = new Inner(){
...
3
votes
3answers
90 views
Why require local variables to be final when accessing from anonymous inner classes?
We all know you can't do things like this:
int a = 7;
new Runnable() {
public void run() {
System.out.println(a);
}
}.run();
...
...without making a final. I get the technical ...
3
votes
7answers
117 views
Anonymous Inner Classes: When are they (in)appropriate?
Take the following example. There's an object I want to use, call it a Doodad. Doodad elements have poorly implemented handling of browser events. Typical instantiation of a Doodad would be Doodad ...
3
votes
4answers
77 views
What is this in java? Attaching methods “on the fly”?
I saw something like this today:
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
What does the ...
3
votes
4answers
84 views
Disabling a button inside an anonymous inner class
I have these line of code and I want to disable the button after a passenger has been added. I want to disable the button. seats[i].setEnabled(false) won't work since it's inside an anonymous inner ...
3
votes
4answers
2k views
Accessing variables from inner class
I've got some code which defines an anonymous inner class for a callback handler. This handler needs to assign a local variable, see below. I need to assign resp in the callback and refer to it ...
3
votes
2answers
440 views
How to set conditional breakpoint in anonymous inner class depending on final local variable?
suppose I have the following class and want to set a conditional breakpoint on arg==null at the marked location. This won't work in eclipse and gives the error "conditional breakpoint has compilation ...
3
votes
1answer
126 views
Is there a syntax to get the reference to an anonymous inner class from a further anonymous inner class?
Consider this case:
public class SomeClass {
public void someMethod() {
new SomeInterface() {
public void someOtherMethod() {
new SomeOtherInterface() {
...
3
votes
2answers
158 views
how to reference a higher class within an anonymous class
I have this code:
public class Home extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//...
...
3
votes
5answers
580 views
Accessing an outer anonymous class's field from an inner anonymous class
To access the field x of an outer class A from an inner class B, I realize that you can use "A.this.x". But what if the outer class is also anonymous? For example,
public class Main1 {
public ...
2
votes
2answers
118 views
How can I pass a non final variable to an anonymous inner class?
I have these lines of code. I know you can not pass a non final variable to an inner class but I need to pass the variable i to the anonymous inner class to be used as a seatingID. Can you suggest ...
2
votes
3answers
219 views
Constructors in Inner classes (implementing Interfaces)
How would I go about writing a constructor for an inner class which is implementing an interface? I know I could make a whole new class, but I figure there's got to be a way to do something along the ...
2
votes
3answers
2k views
How do you resolve a circular dependency with an inner class?
(Java question)
If I reference a field in an inner class, does this cause a circular dependency between the enclosing class and the inner class?
How can I avoid this?
Here is an example:
public ...
1
vote
4answers
42 views
How to use Outer Method's input in Anonymous Inner Class?
For Instance how can I use the input 'hasTypedSomeToken' in my Anonymou inner class in the following -
public class Login {
void display(boolean hasTypedSomeToken)
{
...
1
vote
2answers
46 views
How can I access private class members of container class within the anonymouse inner class?
How can I access all the member field of the class which contains the function initTimer() from within the AbstractActionClass?
Thanks
private void initTimer()
{
Action updateClockAction = ...
1
vote
2answers
181 views
Anonymous inner classes as keys in Java, but what in C#?
In Wicket, they have something called a MetaDataKey. These are used to store typed meta information in Wicket components. Since Wicket makes heavy use of serialization, the Wicket designers decided ...
1
vote
4answers
304 views
In Java how can I reference an anonymous inner class from within itself?
I'm defining a callback and would like to refer to the callback from within itself. The compiler does not like this and claims that the variable referring to the callback is not initialized. Here's ...
0
votes
2answers
80 views
Modify an object from OnClickListener non-final variable permited
I have an adapter where I load my users and one button/textfiled for send invitations. In the adapter I do this:
@Override
public View getView(int position, View convertView, ViewGroup parent) { ...
0
votes
2answers
75 views
The Anonymous Class Conundrum
I think I understand the basics of Anonymous classes but I'd like to clarify something.
when I have a syntax such as this
class A
{
class AnonymousClass1 Implements ActionListener{}
}
class ...
0
votes
2answers
104 views
Access the outer class instance within the anonymous inner class in Java [closed]
Possible Duplicate:
keyword for the outer class from an anonymous inner class?
I need to access the instance of the outer class within the anonymous inner class and did something like this. ...