Dépôt officiel du code source de l'ERP OpenConcerto
Rev 74 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.openconcerto.modules.extensionbuilder.table;
public class ElementDescriptor {
private String id;
private String tableName;
public ElementDescriptor(String id, String tableName) {
this.id = id;
this.tableName = tableName;
}
public String getId() {
return this.id;
}
public String getTableName() {
return this.tableName;
}
@Override
public String toString() {
return "ElementDescriptor id: " + this.id + " table: " + this.tableName;
}
}