This may be a stupid question but are you actually extending whatever
class defines notifyObserver()?

Ben



--- In flexcoders@yahoogroups.com, justSteve <[EMAIL PROTECTED]> wrote:
>
> The API at docs at
http://puremvc.org/component/option,com_wrapper/Itemid,160/
> 
> 
> From the API docs at
http://puremvc.org/component/option,com_wrapper/Itemid,160/
> 
> public function notifyObserver(notification:INotification):void
> 
> Notify the interested object.
> Parameters
>       notification:INotification — the INotification to pass to the
> interested object's notification method.
> 
> 
> My code imports:
>         import org.puremvc.as3.patterns.observer.*;
> 
> Error tossed on this method:
>         override public function notifyObserver (
> notification:INotification) : void
>         {
>             super.notifyObserver ( notification );
>               
>                   loggingTarget.filters=["*"];
>                   loggingTarget.level = LogEventLevel.ALL;
>                   loggingTarget.includeDate = true;
>                   loggingTarget.includeTime = true;
>                   loggingTarget.includeCategory = true;
>                   loggingTarget.includeLevel = true;
>               
>                   logger = Log.getLogger(thi);
>               
>         }
> 
> Your coming in cheap...easily worth $10 to find out where I'm going
astray.
> ;)
> --steve...
> 
> 
> On Sun, Mar 23, 2008 at 7:59 PM, Doug McCune <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> >
> > $10 says either 1, 2, or 3 aren't quite true ;)
> >
> > paste some code of the method and tell us which class you're
extending.
> >
> > Doug
> >
> >
> >
> > On Sun, Mar 23, 2008 at 5:57 PM, justSteve <[EMAIL PROTECTED]>
> > wrote:
> >
> > >
> > >
> > >
> > >
> > >
> > >
> > > I"m attempting to override a function where I've verified that:
> > > 1) I'm importing the correct package
> > > 2) The method I'm trying to override is public
> > > 3) The signatures match.
> > >
> > > Some other condition is causing the error message:
> > > 1020: Method marked override must override another method.
> > >
> > > Where should I look?
> > >
> > > thx
> > > --steve...
> > >
> >
> >
>


Reply via email to