Class BitbucketQuery
- java.lang.Object
-
- org.vx68k.netbeans.module.bitbucket.BitbucketQuery
-
public final class BitbucketQuery extends Object
Query for Bitbucket Cloud.- Author:
- Kaz Nishimura
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BitbucketQuery(BitbucketIssueTracker repository)
Initializes the object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayName()
Returns the display name of the query.String
getFilter()
Returns the filter expression of the query.Collection<BitbucketIssue>
issues()
Returns aCollection
view of the issues found.void
setDisplayName(String newValue)
Sets the display name of the query.void
setFilter(String newValue)
Sets the filter expression of the query.
-
-
-
Constructor Detail
-
BitbucketQuery
protected BitbucketQuery(BitbucketIssueTracker repository)
Initializes the object.- Parameters:
repository
- repository to which the query is bound
-
-
Method Detail
-
getDisplayName
public String getDisplayName()
Returns the display name of the query.- Returns:
- the display name of the query
-
setDisplayName
public void setDisplayName(String newValue)
Sets the display name of the query.- Parameters:
newValue
- new value of the display name
-
getFilter
public String getFilter()
Returns the filter expression of the query.- Returns:
- the filter expression of the query
-
setFilter
public void setFilter(String newValue)
Sets the filter expression of the query.- Parameters:
newValue
- a new value of the filter expression
-
issues
public Collection<BitbucketIssue> issues()
Returns aCollection
view of the issues found.- Returns:
- a
Collection
view of the issues found
-
-