Java Code Examples for mil.nga.geopackage.attributes.AttributesDao#getTable()
The following examples show how to use
mil.nga.geopackage.attributes.AttributesDao#getTable() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StyleDao.java From geopackage-android with MIT License | 2 votes |
/** * Constructor * * @param dao user custom data access object */ public StyleDao(AttributesDao dao) { super(dao.getDatabase(), dao.getDb(), new StyleTable(dao.getTable())); }
Example 2
Source File: StyleDao.java From geopackage-java with MIT License | 2 votes |
/** * Constructor * * @param dao * user custom data access object */ public StyleDao(AttributesDao dao) { super(dao.getDatabase(), dao.getDb(), new StyleTable(dao.getTable())); }