www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,39 @@
package it.acxent.anag;
import it.acxent.db.ApplParmFull;
import it.acxent.util.StringTokenizer;
import it.acxent.util.Vectumerator;
public class Lang extends _AnagAdapter {
private String descrizione;
public Lang() {}
public Lang(ApplParmFull newApplParmFull) {
super(newApplParmFull);
}
public String getDescrizione() {
return (this.descrizione == null) ? "" : this.descrizione;
}
public void setDescrizione(String descrizione) {
this.descrizione = descrizione;
}
public Vectumerator findLingue() {
Vectumerator vec = new Vectumerator();
String lingue = getParm("TAGLIE_LINGUE").getTesto();
StringTokenizer st = new StringTokenizer(lingue, ",");
while (st.hasMoreTokens()) {
Lang lg = new Lang(getApFull());
lg.setDescrizione(st.nextToken());
vec.add(lg);
}
return vec;
}
protected boolean isDatabaseBean() {
return false;
}
}