Class OfflineProblemDescriptor
- java.lang.Object
-
- com.intellij.codeInspection.offline.OfflineProblemDescriptor
-
public class OfflineProblemDescriptor extends Object
-
-
Field Summary
Fields Modifier and Type Field Description String
myDescription
String
myFQName
List<String>
myHints
int
myLine
String
myModuleName
String[]
myParentFQName
String[]
myParentType
int
myProblemIndex
String
myType
-
Constructor Summary
Constructors Constructor Description OfflineProblemDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDescription()
String
getFQName()
List<String>
getHints()
int
getLine()
String
getModuleName()
OfflineProblemDescriptor
getOwner()
String[]
getParentFQName()
String[]
getParentType()
int
getProblemIndex()
String
getType()
int
hashCode()
void
setDescription(String description)
void
setFQName(String FQName)
void
setHints(List<String> hints)
void
setLine(int line)
void
setModule(String moduleName)
void
setParentFQName(String[] parentFQName)
void
setParentType(String[] parentType)
void
setProblemIndex(int problemIndex)
void
setType(String type)
String
toString()
-
-
-
Field Detail
-
myType
public String myType
-
myFQName
public String myFQName
-
myDescription
public String myDescription
-
myProblemIndex
public int myProblemIndex
-
myLine
public int myLine
-
myParentType
public String[] myParentType
-
myParentFQName
public String[] myParentFQName
-
myModuleName
public String myModuleName
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
getFQName
public String getFQName()
-
setFQName
public void setFQName(String FQName)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getProblemIndex
public int getProblemIndex()
-
setProblemIndex
public void setProblemIndex(int problemIndex)
-
getLine
public int getLine()
-
setLine
public void setLine(int line)
-
getParentType
public String[] getParentType()
-
setParentType
public void setParentType(String[] parentType)
-
getParentFQName
public String[] getParentFQName()
-
setParentFQName
public void setParentFQName(String[] parentFQName)
-
getOwner
@Nullable public OfflineProblemDescriptor getOwner()
-
setModule
public void setModule(String moduleName)
-
getModuleName
public String getModuleName()
-
-