Package | Description |
---|---|
es.ugr.swad.swadroid |
Main package.
|
es.ugr.swad.swadroid.model |
Contains classes for manipulate application model.
|
es.ugr.swad.swadroid.modules.groups |
Groups package.
|
es.ugr.swad.swadroid.utils |
Utilities package.
|
Modifier and Type | Field and Description |
---|---|
private List<Model> |
SWADMain.listCourses
User courses list
|
Modifier and Type | Class and Description |
---|---|
class |
Course
Class for store a course
|
class |
Group
Class for store a group.
|
class |
GroupType
Class to store a Group Type.
|
class |
PairTable<FIRST,SECOND>
Specific Pair class for database tables
|
class |
PracticeSession
Class for store a practice session
|
class |
SWADNotification
Class for store a notification
|
class |
Test
Class for store a test
|
class |
TestAnswer
Class for store a test answer
|
class |
TestQuestion
Clas for store a test question
|
class |
TestTag
Class for store a test tag
|
class |
User
User data.
|
Modifier and Type | Method and Description |
---|---|
private Model |
DataBaseHelper.createObjectByTable(String table,
Entity ent)
Creates a Model's subclass object looking at the table selected
|
Model |
DataBaseHelper.getRow(String table,
String fieldName,
Object fieldValue)
Gets a row of specified table
|
Modifier and Type | Method and Description |
---|---|
List<Model> |
DataBaseHelper.getAllRows(String table)
Gets all rows of specified table
|
List<Model> |
DataBaseHelper.getAllRows(String table,
String where,
String orderby)
Gets the rows of specified table that matches "where" condition.
|
Modifier and Type | Method and Description |
---|---|
(package private) boolean |
DataBaseHelper.insertEntity(String tableName,
Model currentModel,
Entity... ents)
Inserts a new row or updates an existing one in the table named @a tableName with the data that contains @a currentModel
|
Modifier and Type | Method and Description |
---|---|
boolean |
DataBaseHelper.insertCollection(String table,
List<Model> currentModels,
long... courseCode) |
Modifier and Type | Field and Description |
---|---|
private ArrayList<Model> |
EnrollmentExpandableListAdapter.groups |
private ArrayList<Model> |
MyGroupsManager.groupTypes |
Modifier and Type | Method and Description |
---|---|
private HashMap<Long,ArrayList<Group>> |
MyGroupsManager.getHashMapGroups(ArrayList<Model> groupTypes) |
Constructor and Description |
---|
EnrollmentExpandableListAdapter(Context context,
ArrayList<Model> groups,
HashMap<Long,ArrayList<Group>> children,
int layoutGroup,
int layoutChild,
int currentRole) |
Modifier and Type | Method and Description |
---|---|
static String |
Utils.getSeenNotificationCodes(List<Model> markedNotificationsList)
Creates a string of notification codes separated by commas from a list of notifications
|