summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/LectureLdapFilterTable.java
blob: f037263e825732d0783f41d17e0191b4832df042 (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
36
37
38
39
package org.openslx.dozmod.gui.control.table;

import org.openslx.bwlp.thrift.iface.LdapFilter;
import org.openslx.dozmod.gui.helper.I18n;

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

	public static final ListTableColumn COL_TITLE = new ListTableColumn(
			I18n.CONTROL.getString("LectureLdapFilterTable.ListTableColumn.title.colName"));
	public static final ListTableColumn COL_ATTRIBUTE = new ListTableColumn(
			I18n.CONTROL.getString("LectureLdapFilterTable.ListTableColumn.attribute.colName"));
	public static final ListTableColumn COL_VALUE = new ListTableColumn(
			I18n.CONTROL.getString("LectureLdapFilterTable.ListTableColumn.value.colName"));
	
	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;
	}

}