OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
74 ilm 1
package org.openconcerto.modules.extensionbuilder.table;
2
 
3
public class ElementDescriptor {
4
    private String id;
5
    private String tableName;
6
 
7
    public ElementDescriptor(String id, String tableName) {
8
        this.id = id;
9
        this.tableName = tableName;
10
    }
11
 
12
    public String getId() {
13
        return id;
14
    }
15
 
16
    public String getTableName() {
17
        return tableName;
18
    }
19
 
20
    @Override
21
    public String toString() {
22
        return "ElementDescriptor id: " + id + " table: " + tableName;
23
    }
24
}