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

Request is an Abstract class with an abstract onFinish method.

Request.authenticate is a static method that instantiates a new Request object. Why is the system not letting me force override onFininsh with this syntax???

Request sqr = Request.authenticate(act, outerBundle) {
    @Override
    public void onFinish(String resp){System.out.println("HEY");}
};
share|improve this question
2  
Because it doesn't make any sense. You can't declare a method inside another one, and @Override can only be placed above a method declaration... – Etienne de Martel Jun 7 '11 at 20:27
4  
What would this syntax even mean? You're sort of trying to create an anonymous class instance, but not really. – Oli Charlesworth Jun 7 '11 at 20:27
2  
I'm really confused as to what that code should actually mean... – Ivan Jun 7 '11 at 20:28
2  
Because it looks like invalid syntax for Java - what's the compiler's error message. – planetjones Jun 7 '11 at 20:28
1  
Does that code even compile? – Paul Jun 7 '11 at 20:30
show 5 more comments

1 Answer

up vote 1 down vote accepted

You cannot override a method of an already existing instance. The best you could do is to extend Request. This is off the top of my head but something like this should work, assuming you can control the type of Request that is returned:

public class MyRequest extends Request
{
  private MyFinish _finish;
  public MyRequest(MyFinish finish)
  {
    _finish=finish;
  }

  public void setFinish(MyFinish finish)
  {
     _finish=finish;
  }

  @Override
  public void onFinish(String resp)
  {
    _finish.doFinish(resp);    
  }
}

public interface MyFinish
{
  public void doFinish(String resp);
}

You would then plug in your custom finishing classes that implement MyFinish.

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.