I need to generate classes that use slightly different methods than the ones the SourceGenerator creates. Will a mapping file allow me to do this? I have never used one and I can't seem to find much on the subject or at least I may be looking the wrong place.

In particular, I'd like to create a Mac OS X compatible class:

public CompanyType() {
        super();
        _employees = new NSMutableArray();
}

public void addEmployee(EmployeeType anEmployee) {
        _employees.addObject(anEmployee);
}

public NSArray employees() {
        return _employees;
}

etc...

----------------------------------------------------------- If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-dev




Reply via email to