When creating a subclass that extends Error, I encountered something I have not seen before.
Code... created by Flex Builder 2 beta1
package com.teotigraphix.teodoc.errors.projects
{
public class NullProjectError extends Error
{
native public function NullProjectError(message:String)
{
super(message);
}
}
}
Now, I have looked evrywhere for this.... What is 'native', I know I can easily guess what this is(Error is a native Class) but, it's undocumented as far as I know.
Is it required ?
Peace, Mike
--
What goes up, does come down.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

