Interface FormService
- 
- All Superinterfaces:
 com.google.gwt.user.client.rpc.RemoteService
@RemoteServiceRelativePath("form") public interface FormService extends com.google.gwt.user.client.rpc.RemoteServiceThe client side stub for the Form Service. This service gives all needed methods to handle the forms. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFormService.Instance 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GUIDocumentcreate(GUIDocument form)Creates a new formvoiddelete(long formId)Deletes a form 
 - 
 
- 
- 
Method Detail
- 
create
GUIDocument create(GUIDocument form) throws ServerException
Creates a new form- Parameters:
 form- the form to create- Returns:
 - the created form
 - Throws:
 ServerException- an error happened in the server application
 
- 
delete
void delete(long formId) throws ServerExceptionDeletes a form- Parameters:
 formId- identifier of the form to delete- Throws:
 ServerException- an error happened in the server application
 
 - 
 
 -