BrightSide Workbench Full Report + Source Code
ConnectorListbox.java
Go to the documentation of this file.
1
/*
2
* TurrĂ³ i Cutiller Foundation. License notice.
3
* Copyright (C) 2017 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4
*
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU Affero General Public License as published by
7
* the Free Software Foundation, either version 3 of the License, or
8
* (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU Affero General Public License for more details.
14
*
15
* You should have received a copy of the GNU Affero General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
package
org.turro.contacts.zul.contact;
20
21
import
org.turro.contacts.db.ContactsPU;
22
import
org.turro.jpa.input.JpaListbox;
23
28
public
class
ConnectorListbox
extends
JpaListbox
<String> {
29
30
public
ConnectorListbox
(String connector) {
31
super(
new
ContactsPU
(),
32
"select distinct c.value from Connector as c "
+
33
"where c.description = '"
+ connector +
"'"
+
34
"order by 1"
,
35
false
,
false
);
36
}
37
38
@Override
39
public
String
convertToString
(String v) {
40
return
v;
41
}
42
43
@Override
44
public
boolean
getChecked
(String v) {
45
return
true
;
46
}
47
48
@Override
49
public
void
setChecked
(String v,
boolean
checked) {
50
51
}
52
53
}
org.turro.contacts.db.ContactsPU
Definition:
ContactsPU.java:44
org.turro.contacts.zul.contact.ConnectorListbox
Definition:
ConnectorListbox.java:28
org.turro.contacts.zul.contact.ConnectorListbox.getChecked
boolean getChecked(String v)
Definition:
ConnectorListbox.java:44
org.turro.contacts.zul.contact.ConnectorListbox.ConnectorListbox
ConnectorListbox(String connector)
Definition:
ConnectorListbox.java:30
org.turro.contacts.zul.contact.ConnectorListbox.setChecked
void setChecked(String v, boolean checked)
Definition:
ConnectorListbox.java:49
org.turro.contacts.zul.contact.ConnectorListbox.convertToString
String convertToString(String v)
Definition:
ConnectorListbox.java:39
org.turro.jpa.input.JpaListbox
Definition:
JpaListbox.java:33
TurroProjects
Public
BrightSide
contacts
src
main
java
org
turro
contacts
zul
contact
ConnectorListbox.java
Generated on Tue Mar 12 2024 07:01:18 for BrightSide by
1.9.1