Uses of Class
idi.diplom.linda.model.MedPacket

Packages that use MedPacket
idi.diplom.linda.db.implementation   
idi.diplom.linda.db.interfaces   
idi.diplom.linda.lifeshirt   
idi.diplom.linda.logic   
idi.diplom.linda.model   
idi.diplom.linda.webservice   
 

Uses of MedPacket in idi.diplom.linda.db.implementation
 

Methods in idi.diplom.linda.db.implementation that return MedPacket
 MedPacket MedPacketDAOHibernate.findLast(Patient p)
           
 

Methods in idi.diplom.linda.db.implementation that return types with arguments of type MedPacket
 java.util.List<MedPacket> MedPacketDAOHibernate.getMedPacketsBetweenDate(Patient p, java.util.Date fromTime, java.util.Date toTime)
           
 

Uses of MedPacket in idi.diplom.linda.db.interfaces
 

Methods in idi.diplom.linda.db.interfaces that return MedPacket
 MedPacket MedPacketDAO.findLast(Patient p)
          Gets the last medpacket saved on specified patient
 

Methods in idi.diplom.linda.db.interfaces that return types with arguments of type MedPacket
 java.util.List<MedPacket> MedPacketDAO.getMedPacketsBetweenDate(Patient p, java.util.Date fromDate, java.util.Date toTime)
          Gets all medpackets between specified dates on specified patient
 

Uses of MedPacket in idi.diplom.linda.lifeshirt
 

Methods in idi.diplom.linda.lifeshirt with parameters of type MedPacket
 void Processer.storeMedPacket(MedPacket mp)
          Stores a medpacket in the database
 

Uses of MedPacket in idi.diplom.linda.logic
 

Methods in idi.diplom.linda.logic that return MedPacket
 MedPacket MedPacketLogic.getLast(Patient p)
          Returns the last medpacket fetched from LifeShirt on the specified patient
 MedPacket[] MedPacketLogic.getMedPacketsBetweenDates(Patient p, java.util.Date fromTime, java.util.Date toTime, int resolution)
          Returns a list of all medpackets in database on specified patient between the specified dates.
 

Methods in idi.diplom.linda.logic that return types with arguments of type MedPacket
 java.util.List<MedPacket> MedPacketLogic.getMedPacketsFromIntervalInFront(Alarm a)
          NOT IN USE IN THIS VERSION.
 

Methods in idi.diplom.linda.logic with parameters of type MedPacket
 void AlarmLogic.addPacketToDismissedAlarms(MedPacket mp, Patient p)
          NOT IN USE IN THIS VERSION
 void AlarmLogic.checkForAlarms(Patient p, MedPacket mp)
          Checks if medpacket contains abnormal vital sign values and creates alarms
 

Uses of MedPacket in idi.diplom.linda.model
 

Methods in idi.diplom.linda.model that return MedPacket
 MedPacket[] Alarm.getMedPackets()
           
 

Methods in idi.diplom.linda.model with parameters of type MedPacket
 void Alarm.addMedPacket(MedPacket mp)
           
 void Alarm.setMedPackets(MedPacket[] medPackets)
           
 

Uses of MedPacket in idi.diplom.linda.webservice
 

Methods in idi.diplom.linda.webservice that return MedPacket
 MedPacket LifeShirtWebService.getLastMedPacket(Patient p)
          Gets the last saved medpacket on specified patient
 MedPacket[] LifeShirtWebService.getPacketsBetweenDates(Patient p, java.util.Date fromTime, java.util.Date toTime, int resolution)
          Returns a list of medpackets saved on specified patient between specified time.