google-code-export / gwt-platform

Automatically exported from code.google.com/p/gwt-platform
1 stars 0 forks source link

Change annotation 'GenDto' so that the generated class implements the same interface as the class using 'GenDto' annotations #444

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I need to have ability to work with generated class implementing custom 
interface. 

For example:

@GenDto
public class AccountModel implements IDto
{   
    @Order(1)
    public Long id;
    @Order(2)
    public String accountNumber;
}

public class AccountModelDto implements IsSerializable, IDto { 

  public java.lang.Long id;
  public java.lang.String accountNumber;
....
}

Should i write own processor or this feature can be added in current processor 
'GenDto' version?

Original issue reported on code.google.com by Turaeva....@gmail.com on 10 Nov 2012 at 4:38

GoogleCodeExporter commented 9 years ago

Original comment by goudreau...@gmail.com on 27 Nov 2012 at 2:33