OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 74 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.openconcerto.modules.extensionbuilder.component;


public class ComponentDescritor extends GroupDescritor {

    private String table;

    public ComponentDescritor(String id) {
        super(id);

    }

    public void setTable(String table) {
        this.table = table;

    }

    public String getTable() {
        return this.table;
    }


}