Class QuickAssistProposalGroup


  • @API(type=INTERNAL,
         src=PUBLIC)
    public class QuickAssistProposalGroup
    extends java.lang.Object
    The group for a quick assist proposal.
    • Constructor Summary

      Constructors 
      Constructor Description
      QuickAssistProposalGroup​(java.lang.String displayString, java.lang.String iconPath, boolean isQuickFix)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.String getDisplayString()  
      java.lang.String getIconPath()  
      int hashCode()  
      boolean isQuickFix()
      Checks whether it is a quick fix or a refactory group.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • QuickAssistProposalGroup

        public QuickAssistProposalGroup​(java.lang.String displayString,
                                        java.lang.String iconPath,
                                        boolean isQuickFix)
        Constructor.
        Parameters:
        displayString - The display String for the group.
        iconPath - The path to the icon of this group.
        isQuickFix - true if it is a quick fix group, false if it is a refactory group.
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
        See Also:
        Object.equals(java.lang.Object)
      • getDisplayString

        public java.lang.String getDisplayString()
        Returns:
        The render string for the group.
      • getIconPath

        public java.lang.String getIconPath()
        Returns:
        Returns the icon path.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
        See Also:
        Object.hashCode()
      • isQuickFix

        public boolean isQuickFix()
        Checks whether it is a quick fix or a refactory group.
        Returns:
        true if it is a quick fix group, false if it is a refactory group.