Class InspectionTypeInfo
- java.lang.Object
-
- jetbrains.buildServer.agent.inspections.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 Summary
Fields Modifier and Type Field Description String
myCategory
String
myDescription
String
myId
String
myName
-
Constructor Summary
Constructors Constructor Description InspectionTypeInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCategory()
Gets inspection type categoryString
getDescription()
Gets inspection type long descriptionString
getId()
Gets inspection type unique identifierString
getName()
Gets inspection type short descriptionvoid
setCategory(String category)
Set inspection category: some string to group inspections by type.void
setDescription(String description)
Sets inspection type long descriptionvoid
setId(String id)
Sets inspection type unique identifiervoid
setName(String name)
Sets inspection type short descriptionString
toString()
-
-
-
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
-
-