* UI: added cell hints to player's list in lobby, fixed header hints;

This commit is contained in:
Oleg Agafonov 2019-01-21 01:10:01 +04:00
parent dd5856e02c
commit 91a3328907
6 changed files with 217 additions and 163 deletions

View file

@ -0,0 +1,41 @@
package mage.client.table;
/**
* @author JayDi85
*/
public class ColumnInfo {
private Integer index;
private Integer width;
private String headerName;
private String headerHint;
private Class colClass;
public ColumnInfo(Integer index, Integer width, Class colClass, String headerName, String headerHint) {
this.index = index;
this.width = width;
this.colClass = colClass;
this.headerName = headerName;
this.headerHint = headerHint;
}
public Integer getIndex() {
return index;
}
public Integer getWidth() {
return width;
}
public String getHeaderName() {
return headerName;
}
public String getHeaderHint() {
return headerHint;
}
public Class getColClass() {
return colClass;
}
}