Class InspectionTypeInfo


  • public class InspectionTypeInfo
    extends Object
    Represents inspection type: unique description of conducted inspection Each inspection instance (i.e. concrete warning, error in code) has inspection type
    • Field Detail

      • myName

        public String myName
      • myDescription

        public String myDescription
      • myCategory

        public String myCategory
    • Constructor Detail

      • InspectionTypeInfo

        public InspectionTypeInfo()
    • Method Detail

      • getId

        public String getId()
        Gets inspection type unique identifier
      • setId

        public void setId​(String id)
        Sets inspection type unique identifier
      • getName

        public String getName()
        Gets inspection type short description
      • setName

        public void setName​(String name)
        Sets inspection type short description
      • getDescription

        public String getDescription()
        Gets inspection type long description
      • setDescription

        public void setDescription​(String description)
        Sets inspection type long description
      • getCategory

        public String getCategory()
        Gets inspection type category
      • setCategory

        public void setCategory​(String category)
        Set inspection category: some string to group inspections by type. Example: "Style violations", "Calling contracts"
        Parameters:
        category - arbitrary string describing inspection category