
To be able to use the functions provided by the Java API for form handling, you must first declare the use of the relevant public part in your development component. Then you must access the required interfaces using a public helper class.
You must have set up your project as described in Setting Up Your Project .
The API functions are provided in a set of interfaces, which are accessed using the helper class com.sap.caf.eu.gp.forms.api.InteractiveFormsFacade .
packagecom.sap.caf.eu.gp.api.test; importcom.sap.caf.eu.gp.forms.api.IFormProcessor; importcom.sap.caf.eu.gp.forms.api.InteractiveFormsFacade; publicclass APITest {IFormProcessor formProcessor = InteractiveFormsFacade.getFormsProcessor(); ... } |