seges / acris

AcrIS is a modern framework serving as a base for applications, web sites and portals. It provides various tools and libraries to ease daily development. Build on top of Google web toolkit and provides sophisticated solution for security, beans binding, JSON protocol and usefull project skelets integrated with maven, hibernate, spring and gilead. You will get a prepared solution in box ready to use in your own project.
4 stars 1 forks source link

Local service in eclipse #61

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
It's not generated properly in enclipse for Typed remote service

example:

@RemoteServiceDefinition
public interface GWTLoaderServiceRemote<T extends IDomainObject<?>> extends 
RemoteService {

    PagedResult<List<T>> findAll(String entityClassName, Page page);
}

Result in eclipse:
@LocalServiceDefinition(remoteService = 
sk.seges.acris.shared.service.GWTLoaderServiceRemote.class)
@Generated(value = 
"sk.seges.corpis.pap.service.hibernate.HibernateServiceInterfaceProcessor")
public interface GWTLoaderServiceLocal<DOMAIN_T extends IDomainObject<?>> {

    PagedResult<List<T>> findAll(String entityClassName, Page page);

}

--> GWTLoaderServiceLocal<DOMAIN_T ...> vs List<T> (T does not exist)

Original issue reported on code.google.com by nejakyus...@gmail.com on 14 Nov 2011 at 8:50

GoogleCodeExporter commented 9 years ago

Original comment by nejakyus...@gmail.com on 14 Nov 2011 at 8:50

GoogleCodeExporter commented 9 years ago
The change for this is done now.

Original comment by nejakyus...@gmail.com on 15 Nov 2011 at 12:33