Tagged Questions
The outer-classes tag has no wiki summary.
6
votes
3answers
269 views
Java Inner Class extends Outer Class
There are some cases in Java where an inner class extends an outer class.
For example, java.awt.geom.Arc2D.Float is an inner class of java.awt.geom.Arc2D,
and also extends Arc2D.
(c.f. ...
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
2k views
Getting Reference to Calling Activity from AsyncTask (NOT as an inner class)
Is it at all possible, from within an AsyncTask that is NOT an inner class of the calling Activity class, to get a reference to the instance of Activity that initiated execution of the AsyncTask?
I ...
1
vote
3answers
307 views
Java: Name ambiguity between outer and inner class methods
Suppose I have:
public class OuterClass() {
public class InnerClass {
public void someMethod(int x) {
someMethod(x);
}
}
public void someMethod(int x) {
...
0
votes
3answers
53 views
Java - Array of Inner Classes inside of Outer Class
Let's say I have:
public class A {
public A() {
...
}
...
public class B {
public B() {
...
}
public void doSomething() {
...
}
...
}
public class C ...