Uses of Class
de.msponer.android.yac.model.MobileWorkItem

Packages that use MobileWorkItem
de.msponer.android.yac.activities.position This package contains YAC activities and classes to implement a localized workflow management. 
de.msponer.android.yac.activities.workqueues This package contains YAC activities and classes that are related to the user's work queues. 
de.msponer.android.yac.adapter This package contains YAC adapter classes. 
de.msponer.android.yac.db This package contains ORMLite helper classes. 
de.msponer.android.yac.model This package contains YAC model class(es) and enumerations. 
de.msponer.android.yac.services.impl This package contains YAC service(s). 
de.msponer.android.yac.util This package contains YAC utility classes. 
 

Uses of MobileWorkItem in de.msponer.android.yac.activities.position
 

Methods in de.msponer.android.yac.activities.position that return MobileWorkItem
 MobileWorkItem MobileWorkItemOverlay.getMobileWorkItem()
          Return the current mobile work item.
 

Methods in de.msponer.android.yac.activities.position with parameters of type MobileWorkItem
 void MobileWorkItemOverlay.setMobileWorkItem(MobileWorkItem mobWorkItem)
          Sets the current mobile work item.
protected  void TappableWorkListOverlay.startWorkItemActivity(MobileWorkItem mobileWorkItem)
          Starts the work item activity.
 

Constructors in de.msponer.android.yac.activities.position with parameters of type MobileWorkItem
MobileWorkItemOverlay(com.google.android.maps.GeoPoint point, MobileWorkItem mobWorkItem)
          Constructor setting geo point and mobile work item.
 

Uses of MobileWorkItem in de.msponer.android.yac.activities.workqueues
 

Methods in de.msponer.android.yac.activities.workqueues that return MobileWorkItem
 MobileWorkItem EditWorkItemActivity.getCurrentMobileWorkItem()
          Returns the current mobile work item.
 MobileWorkItem WorkListActivity.getSelectedItem()
          Returns the selected work item.
 

Methods in de.msponer.android.yac.activities.workqueues that return types with arguments of type MobileWorkItem
 com.j256.ormlite.dao.Dao<MobileWorkItem,Integer> WorkListActivity.getMobileWorkItemDao()
          Returns the mobile work item dao.
 List<MobileWorkItem> WorkListActivity.getWorkitemList()
          Returns the current work item list.
 

Methods in de.msponer.android.yac.activities.workqueues with parameters of type MobileWorkItem
 void WorkListActivity.setSelectedItem(MobileWorkItem selectedItem)
          Sets the selected work item.
 

Method parameters in de.msponer.android.yac.activities.workqueues with type arguments of type MobileWorkItem
 void WorkListActivity.setMobileWorkItemDao(com.j256.ormlite.dao.Dao<MobileWorkItem,Integer> mobileWorkItemDao)
          Sets the current mobile work item dao.
 void WorkListActivity.setWorkitemList(List<MobileWorkItem> workitemList)
          Sets the current work item list.
 

Uses of MobileWorkItem in de.msponer.android.yac.adapter
 

Methods in de.msponer.android.yac.adapter that return types with arguments of type MobileWorkItem
 List<MobileWorkItem> WorkItemSyncAdapter.getWorkitemList()
          Returns the work item list.
 List<MobileWorkItem> WorkItemAdapter.getWorkitemList()
          Returns the work item list.
 List<MobileWorkItem> LocalizedWorkItemAdapter.getWorkitemList()
          Returns the current localized work item list.
 

Method parameters in de.msponer.android.yac.adapter with type arguments of type MobileWorkItem
 void WorkItemSyncAdapter.setWorkitemList(List<MobileWorkItem> workitemList)
          Sets the work item list.
 void WorkItemAdapter.setWorkitemList(List<MobileWorkItem> workitemList)
          Sets the work item list.
 void LocalizedWorkItemAdapter.setWorkitemList(List<MobileWorkItem> workitemList)
          Sets the current localized work item list.
 

Constructor parameters in de.msponer.android.yac.adapter with type arguments of type MobileWorkItem
LocalizedWorkItemAdapter(Context context, int textViewResourceId, List<MobileWorkItem> workitemList)
          Constructor setting the required fields.
WorkItemAdapter(Context context, int textViewResourceId, List<MobileWorkItem> workitemList)
          Constructor setting the required fields.
WorkItemSyncAdapter(Context context, int textViewResourceId, List<MobileWorkItem> workitemList)
          Constructor setting the required fields.
 

Uses of MobileWorkItem in de.msponer.android.yac.db
 

Methods in de.msponer.android.yac.db that return types with arguments of type MobileWorkItem
 com.j256.ormlite.dao.Dao<MobileWorkItem,Integer> DatabaseHelper.getMobileWorkItemDao()
          Returns the Database Access Object (DAO) for our MobileWorkItem class.
 List<MobileWorkItem> QueryHelper.queryForAllLocalizedWorkitems(String lonKey, String latKey)
          Queries the database for all localized work items and returns the resulting list.
 

Uses of MobileWorkItem in de.msponer.android.yac.model
 

Methods in de.msponer.android.yac.model with parameters of type MobileWorkItem
 int MobileWorkItem.compareTo(MobileWorkItem another)
           
 

Uses of MobileWorkItem in de.msponer.android.yac.services.impl
 

Methods in de.msponer.android.yac.services.impl with parameters of type MobileWorkItem
 int YConnectionService.liveSyncWorkitem(MobileWorkItem wi)
          Performs a live sync for a specified work item.
 

Uses of MobileWorkItem in de.msponer.android.yac.util
 

Methods in de.msponer.android.yac.util with parameters of type MobileWorkItem
 int MobileWorkItemDistanceComparator.compare(MobileWorkItem wi1, MobileWorkItem wi2)