* Added column hints to the headers of the list of active tables. Added some more details to the info column about rollback, spectators or planechase activated.

This commit is contained in:
LevelX2 2020-08-22 00:48:13 +02:00
parent 90c6637dc2
commit 445f824424
5 changed files with 103 additions and 11 deletions

View file

@ -4,11 +4,11 @@ package mage.client.table;
* @author JayDi85
*/
public class ColumnInfo {
private Integer index;
private Integer width;
private String headerName;
private String headerHint;
private Class colClass;
private final Integer index;
private final Integer width;
private final String headerName;
private final String headerHint;
private final Class colClass;
public ColumnInfo(Integer index, Integer width, Class colClass, String headerName, String headerHint) {
this.index = index;