The private-class tag has no wiki summary.
4
votes
4answers
111 views
preferred way to organize callbacks
In my Android project, I define a few callbacks to operate on button clicks, connectivity events, or UI events such as Dilaog.onShow(). For demo purposes, I have chosen a Runnable interface that must ...
2
votes
5answers
344 views
Do private classes need to be accessed by properties?
I am using an instance of a private class as the state object supplied to a stream.BeginRead operation. (The class is private to my main stream reading/writing class.)
public class MainClass
{
// ...
2
votes
2answers
123 views
private class calling a method from its outer class
Ok, so I have a class for a "Advanced Data Structure" (in this case a kinda tree)
SO I implimented a Iterator as a private class with in it.
So the iterator needs to implement a remove function to ...