Uses of Interface
com.ibm.pim.userdefinedlog.UserDefinedLogEntry

Packages that use UserDefinedLogEntry
com.ibm.pim.userdefinedlog   
 

Uses of UserDefinedLogEntry in com.ibm.pim.userdefinedlog
 

Methods in com.ibm.pim.userdefinedlog that return UserDefinedLogEntry
 UserDefinedLogEntry CategoryUserDefinedLog.createLogEntry(Category category, java.lang.String entry)
          Creates a UserDefinedLogEntry for a given category.
 UserDefinedLogEntry ItemUserDefinedLog.createLogEntry(Item item, Category category, java.lang.String entry)
          Creates a UserDefinedLogEntry for a given item which belongs to the specific category passed as argument.
 UserDefinedLogEntry ItemUserDefinedLog.createLogEntry(Item item, java.lang.String entry)
          Creates a UserDefinedLogEntry for a given item.The UserDefinedLogEntry object must be persisted by calling UserDefinedLog.save() on the containing UserDefinedLog
 

Methods in com.ibm.pim.userdefinedlog that return types with arguments of type UserDefinedLogEntry
 PIMCollection<UserDefinedLogEntry> UserDefinedLog.getLogEntries()
          Retrieves all UserDefinedLogEntry objects associated with this UserDefinedLog
 PIMCollection<UserDefinedLogEntry> CategoryUserDefinedLog.getLogEntries(Category category)
          Fetches the UserDefinedLogEntry objects corresponding to the category passed in.
 PIMCollection<UserDefinedLogEntry> ItemUserDefinedLog.getLogEntries(Item item)
          Retrieves all UserDefinedLogEntry objects associated with a specific item
 PIMCollection<UserDefinedLogEntry> ItemUserDefinedLog.getLogEntries(Item item, Category category)
          Retrieves all UserDefinedLogEntry objects associated with the item which belongs to the specific category passed as argument.