Class BitbucketIssueProvider.Adapter
- java.lang.Object
-
- org.vx68k.netbeans.module.bitbucket.BitbucketIssueProvider.Adapter
-
- Enclosing class:
- BitbucketIssueProvider
public static final class BitbucketIssueProvider.Adapter extends Object
Issue adapter.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Adapter(BitbucketIssue issue)
Initializes the object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPropertyChangeListener(PropertyChangeListener listener)
Adds a property change listener for the issue.BitbucketIssueController
getController()
Returns the controller for the issue.String
getDisplayName()
Returns the display name of the issue.String
getId()
Returns the identifier for the issue.BitbucketIssue
getIssue()
Returns the Bitbucket Cloud issue.String
getSummary()
Returns the summary of the issue.String
getTooltip()
Returns the tooltip text of the issue.void
removePropertyChangeListener(PropertyChangeListener listener)
Removes a property change listener for the issue.void
resetController()
Resets the controller for the issue.
-
-
-
Constructor Detail
-
Adapter
protected Adapter(BitbucketIssue issue)
Initializes the object.- Parameters:
issue
- a Bitbucket Cloud issue
-
-
Method Detail
-
getIssue
public BitbucketIssue getIssue()
Returns the Bitbucket Cloud issue.- Returns:
- the Bitbucket Cloud issue
-
getId
public String getId()
Returns the identifier for the issue.- Returns:
- the identifier for the issue
-
getDisplayName
public String getDisplayName()
Returns the display name of the issue.- Returns:
- the display name of the issue
-
getTooltip
public String getTooltip()
Returns the tooltip text of the issue.- Returns:
- the tooltip text of the issue
-
getSummary
public String getSummary()
Returns the summary of the issue.- Returns:
- the summary of the issue
-
getController
public BitbucketIssueController getController()
Returns the controller for the issue.- Returns:
- the controller for the issue
-
resetController
public void resetController()
Resets the controller for the issue.
-
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener listener)
Adds a property change listener for the issue.- Parameters:
listener
- a property change listener
-
removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener listener)
Removes a property change listener for the issue.- Parameters:
listener
- a property change listener
-
-