forked from External/mage
* UI: added cell hints to player's list in lobby, fixed header hints;
This commit is contained in:
parent
dd5856e02c
commit
91a3328907
6 changed files with 217 additions and 163 deletions
41
Mage.Client/src/main/java/mage/client/table/ColumnInfo.java
Normal file
41
Mage.Client/src/main/java/mage/client/table/ColumnInfo.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue