summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/LectureLdapFilterTable.java
blob: eb7b71dc907ada91e3c0c26a09bd2e390fbfaf2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package org.openslx.dozmod.gui.control.table;

import org.openslx.bwlp.thrift.iface.LdapFilter;

@SuppressWarnings("serial")
public class LectureLdapFilterTable extends CheckListTable<LdapFilter> {

	public static final ListTableColumn COL_TITLE = new ListTableColumn("Name");
	public static final ListTableColumn COL_ATTRIBUTE = new ListTableColumn("Attribut");
	public static final ListTableColumn COL_VALUE = new ListTableColumn("Wert");
	
	public LectureLdapFilterTable() {
		super(COL_TITLE, COL_ATTRIBUTE, COL_VALUE);
	}

	@Override
	protected Object getValueAtInternal2(LdapFilter item, ListTableColumn columnIndex) {
		if (columnIndex == COL_TITLE) {
			if (item.filterId == 0)
				return "";
			return item.title;
		}
		if (columnIndex == COL_ATTRIBUTE)
			return item.attribute;
		if (columnIndex == COL_VALUE)
			return item.value;
		throw new IndexOutOfBoundsException();
	}

	@Override
	protected boolean isItemCheckable(LdapFilter item) {
		return item.filterId > 0;
	}

}