Package | Description |
---|---|
org.itracker.model |
All entity classes are POJO beans.
|
org.itracker.persistence.dao |
This package contains all Data Access Object (XxxDAO) interfaces
along with their Hibernate implementations (XxxDAOImpl).
|
Modifier and Type | Field | Description |
---|---|---|
static Comparator<Language> |
Language.KEY_COMPARATOR |
|
static Comparator<Language> |
Language.VALUE_COMPARATOR |
Modifier and Type | Method | Description |
---|---|---|
Language |
LanguageDAO.findById(Integer id) |
|
Language |
LanguageDAOImpl.findById(Integer id) |
|
Language |
LanguageDAO.findByKeyAndLocale(String key,
String locale) |
Finds all language items with the given key and locale.
|
Language |
LanguageDAOImpl.findByKeyAndLocale(String key,
String locale) |
Modifier and Type | Method | Description |
---|---|---|
List<Language> |
LanguageDAO.findByKey(String key) |
Finds all language items with a particular key.
|
List<Language> |
LanguageDAOImpl.findByKey(String key) |
|
List<Language> |
LanguageDAO.findByLocale(String locale) |
Finds all language items with a given locale.
|
List<Language> |
LanguageDAOImpl.findByLocale(String locale) |
Copyright © 2002–2019 itracker. All rights reserved.