Uses of Class
com.ail.insurance.policy.AssessmentLine

Packages that use AssessmentLine
com.ail.insurance.policy   
 

Uses of AssessmentLine in com.ail.insurance.policy
 

Subclasses of AssessmentLine in com.ail.insurance.policy
 class AssessmentNote
          Any number of assessment notes may be added to an assessment sheet.
 class Behaviour
          A behaviour is a type of assessment line, specifically one that has an effect on a calculated amount.
 class CalculationLine
          A Calculation Line is an assessment line which contains a calculated element.
 class FixedSum
          A type of assessment line representing a fixed amount (as opposed to one that is calculated by applying a rate to another line).
 class Marker
          A marker assessment line represents a generalization of a referral or decline.
 class MarkerResolution
          An assessment line indicating that a 'Marker' has been resolved.
 class RateBehaviour
          An assessment line which applies a rate behaviour - i.e.
 class Subjectivity
          Subjectivity Assessment line.
 class SumBehaviour
          An assessment line which contributes a fixed sum to another line.
 class Totalizer
          The totalizer calculation line adds any number of other named lines up to make a total, and optionally contributes that total to another line.
 

Methods in com.ail.insurance.policy that return AssessmentLine
 AssessmentLine AssessmentSheetList.findAssessmentLine(java.lang.String longId)
          Find the assessment line with the long name specified
 AssessmentLine AssessmentSheetList.findAssessmentLine(java.lang.String id, AssessmentSheet current)
          Find a line by long or short id.
 AssessmentLine AssessmentSheet.findLineById(java.lang.String id)
          Fetch a named entry from the sheet.
 

Methods in com.ail.insurance.policy that return types with arguments of type AssessmentLine
 java.util.Map<java.lang.String,AssessmentLine> AssessmentSheet.getAssessmentLine()
          Get a list of the assessment lines associated with this sheet as a Map keyed on the line IDs.
 java.util.Map<java.lang.String,AssessmentLine> AssessmentSheet.getAssessmentList()
          Deprecated. use AssessmentSheet.getAssessmentLine() instead.
 java.util.Collection<AssessmentLine> AssessmentSheet.getDisabledLine()
          Fetch a collection of the disabled line objects associated with this instance.
 java.util.Collection<AssessmentLine> AssessmentSheet.getEnabledLine()
          Fetch a collection of all the line objects associated with this instance.
 java.util.Collection<AssessmentLine> AssessmentSheet.getLine()
          Fetch the collection of line objects associated with this instance.
 

Methods in com.ail.insurance.policy with parameters of type AssessmentLine
 void AssessmentSheetList.addAssessmentLine(AssessmentLine line, AssessmentSheet current)
          Add an assessment line.
 void AssessmentSheet.addLine(AssessmentLine line)
          Add a line to the collection associated with this object.
 int AssessmentLine.compareTo(AssessmentLine that)
           
 void AssessmentSheet.disableLine(AssessmentLine line)
          Disable the specified line.
 void AssessmentSheet.enableLine(AssessmentLine line)
          Enable the specified line.
 void AssessmentSheet.removeLine(AssessmentLine line)
          Remove a specific instance of AssessmentLine from the collection associated with this object.
 

Method parameters in com.ail.insurance.policy with type arguments of type AssessmentLine
 void AssessmentSheet.setAssessmentLine(java.util.Map<java.lang.String,AssessmentLine> assessmentLine)
          Set the lines associated with this sheet to the values defined in a Map.
 void AssessmentSheet.setAssessmentList(java.util.Map<java.lang.String,AssessmentLine> assessmentLine)
          Deprecated. use AssessmentSheet.setAssessmentLine(Map) instead.
 void AssessmentSheet.setLine(java.util.Collection<AssessmentLine> line)
          Set the collection of AssessmentLines associated with this sheet.