Uses of Class
org.starhope.appius.util.SimpleDataRecordSet

Packages that use SimpleDataRecordSet
org.starhope.appius.game.inventory   
org.starhope.appius.messaging   
org.starhope.appius.sys.admin   
org.starhope.appius.user   
org.starhope.appius.user.notifications   
org.starhope.appius.util   
 

Uses of SimpleDataRecordSet in org.starhope.appius.game.inventory
 

Subclasses of SimpleDataRecordSet in org.starhope.appius.game.inventory
 class Inventory
           The Inventory represent an SQL-backed set of InventoryItem objects owned by a given user.
 

Methods in org.starhope.appius.game.inventory that return SimpleDataRecordSet
 SimpleDataRecordSet<InventoryItem,Inventory> InventorySQLLoader.loadRecord(String identifier)
           
 

Methods in org.starhope.appius.game.inventory with parameters of type SimpleDataRecordSet
 void InventorySQLLoader.changed(SimpleDataRecordSet<InventoryItem,Inventory> changedRecord)
           
 void InventorySQLLoader.refresh(SimpleDataRecordSet<InventoryItem,Inventory> record)
           
 void InventorySQLLoader.removeRecord(SimpleDataRecordSet<InventoryItem,Inventory> record)
           
 void InventorySQLLoader.saveRecord(SimpleDataRecordSet<InventoryItem,Inventory> record)
           
 

Constructor parameters in org.starhope.appius.game.inventory with type arguments of type SimpleDataRecordSet
Inventory(RecordLoader<SimpleDataRecordSet<InventoryItem,Inventory>> loader)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of SimpleDataRecordSet in org.starhope.appius.messaging
 

Subclasses of SimpleDataRecordSet in org.starhope.appius.messaging
 class BadMailList
           
 

Constructor parameters in org.starhope.appius.messaging with type arguments of type SimpleDataRecordSet
BadMailList(RecordLoader<SimpleDataRecordSet<BadMailRecord,BadMailList>> loader)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of SimpleDataRecordSet in org.starhope.appius.sys.admin
 

Subclasses of SimpleDataRecordSet in org.starhope.appius.sys.admin
 class TheServers
          This is the (global) set of all zone servers across the game's multiverse.
 

Constructor parameters in org.starhope.appius.sys.admin with type arguments of type SimpleDataRecordSet
TheServers(RecordLoader<SimpleDataRecordSet<ZoneServerRecord,TheServers>> loader)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of SimpleDataRecordSet in org.starhope.appius.user
 

Subclasses of SimpleDataRecordSet in org.starhope.appius.user
 class StringSet
          A collection of strings obtained from an arbitrary source, with minimal translation support; a set of StringRecords
 

Constructor parameters in org.starhope.appius.user with type arguments of type SimpleDataRecordSet
StringSet(RecordLoader<SimpleDataRecordSet<StringRecord,StringSet>> loader)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of SimpleDataRecordSet in org.starhope.appius.user.notifications
 

Subclasses of SimpleDataRecordSet in org.starhope.appius.user.notifications
 class NotificationSet
          The collection of all (potentially active) Notifications associated with a given user.
 

Uses of SimpleDataRecordSet in org.starhope.appius.util
 

Classes in org.starhope.appius.util with type parameters of type SimpleDataRecordSet
 class SimpleDataRecordSet<DataRecordClass extends DataRecord,DataRecordSetClass extends SimpleDataRecordSet<DataRecordClass,DataRecordSetClass>>
           This class represents a default implementation of DataRecordSet which is hoped to be sufficient for most purposes.
 

Constructor parameters in org.starhope.appius.util with type arguments of type SimpleDataRecordSet
SimpleDataRecordSet(Class<? extends SimpleDataRecordSet<DataRecordClass,DataRecordSetClass>> klass)
          WRITEME: Document this constructor brpocock@star-hope.org
SimpleDataRecordSet(RecordLoader<SimpleDataRecordSet<DataRecordClass,DataRecordSetClass>> loader)
          WRITEME: Document this constructor brpocock@star-hope.org