Dépôt officiel du code source de l'ERP OpenConcerto
Blame | Last modification | View Log | RSS feed
package org.openconcerto.modules.label;
import org.openconcerto.modules.label.gs1.GS1AIElements;
public class GS1Label extends Label {
String text;
String text2;
GS1AIElements gs1;
public GS1Label(String text, String text2, GS1AIElements gs1) {
this.text = text;
this.text2 = text2;
this.gs1 = gs1;
}
}