You have already defined the constructor:
public ObjetTWS(String p_nom, String p_type,String p_jobAmont,String p_jobAval){
This forces the JVM to omit the default constructor, so you must add it manually
public ObjetTWS() {}
Or declare an object with the given constructor:
ObjetTWS obj = new ObjetTWS(p_nom, p_type,p_jobAmont, p_jobAval);
source share