Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Class, which contains inner class. I want to send value, which equals to the top class, but "this" sends the value of inner class. What can I do?

package Controller;
public class MessageFrameListener{
private MessageFrame mf;
private User us;
private Contact cn;
private Timer timer;
private Running run;
private ListFrame lf;

public MessageFrameListener(ListFrame l_f, MessageFrame m_f, User u_s, Contact c_n, Running r_n){
    run = r_n;
    mf = m_f;
    us = u_s;
    cn = c_n;
    lf = l_f;
    m_f.addButtonListener(new SButtonListener());
    m_f.addWinListener(new FrameListener());

    timer = new Timer(500,new timerListener());
    timer.start();
}


public class FrameListener implements WindowListener{

    @Override
    public void windowClosing(WindowEvent e) {
        timer.stop();
        timer = null;
        mf.close();
        lf.removeMFL(this));
    }       
}
}

So, this line

        lf.removeMFL(this));

sends "FrameListener" by this, but I want to send "MessageFrameListener"

share|improve this question
Please fix the indentation of your code. – Oli Charlesworth May 20 '12 at 13:50

3 Answers

up vote 8 down vote accepted

Use the qualified this:

MessageFrameListener.this
share|improve this answer
2  
+1 for the link to the JLS. – JB Nizet May 20 '12 at 13:54
Ditto. Deleted my answer in favor of this one. – Hovercraft Full Of Eels May 20 '12 at 13:54
Seems to work, thanks – 146 percent Russian May 20 '12 at 13:56

Within the inner class itself, you can use

MessageFrameListener.this;

You can also add a method to the outer class

public MessageFrameListener getInstance() {
    return this;
}
share|improve this answer

Use:

   lf.removeMFL(MessageFrameListener.this);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.