资 源 简 介
This is java API for French Verbs Conjugation developed by barkat abdelbasset, this API is based on the two XML file conjugation-fr.xml and verbs-fr.xml taken from the project Verbiste (http://perso.b2b2c.ca/sarrazip/dev/verbiste.html).
owner : barkat abdelbasset : barkatab@gmail.com
How to use it :
```
import org.jdom.Element;
import univ.biskra.french.ConjugateResult;
import univ.biskra.french.VerbTemplate;
import univ.biskra.french.getElementConjugation;
/**
*
* @author barkat abdelbasset
*/
public class TestConj {
private static String[] pronoms = {"je","tu","il/elle","nous","vous","ils/elles"};
public static void main(String[] args) {
//this is our verb
String verb = "manger";
//get the template to conjuge the verb
VerbTemplate vt = new VerbTemplate("verbs-fr.xml");
String template = vt.getTemplate(verb);
//get the XML elements wich contain the conjugation af the verb
//