◆ createDao()
Dao org.turro.occurrence.SkillOccurrenceAPI.createDao |
( |
| ) |
|
|
protected |
◆ getName()
String org.turro.occurrence.SkillOccurrenceAPI.getName |
( |
| ) |
|
◆ getOccurrences()
List<Skill> org.turro.occurrence.SkillOccurrenceAPI.getOccurrences |
( |
String |
value | ) |
|
|
protected |
Definition at line 49 of file SkillOccurrenceAPI.java.
50 WhereClause wc =
new WhereClause();
51 wc.addClause(
"select t from Skill t");
52 wc.addClause(
"where t.skill = :value");
53 wc.addNamedValue(
"value", value);
54 return getDao().getResultList(Skill.class, wc);
◆ getPossibles()
List<String> org.turro.occurrence.SkillOccurrenceAPI.getPossibles |
( |
String |
value | ) |
|
Definition at line 40 of file SkillOccurrenceAPI.java.
41 WhereClause wc =
new WhereClause();
42 wc.addClause(
"select distinct t.skill from Skill t");
43 wc.setPrefix(
"where");
44 wc.addLikeFields(
new String[] {
"t.skill" }, value);
45 return getDao().getResultList(String.class, wc);
◆ getValue()
String org.turro.occurrence.SkillOccurrenceAPI.getValue |
( |
Skill |
value | ) |
|
|
protected |
◆ setValue()
void org.turro.occurrence.SkillOccurrenceAPI.setValue |
( |
Skill |
value, |
|
|
String |
newValue |
|
) |
| |
|
protected |
The documentation for this class was generated from the following file: