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 protectedBitbucketQuery(BitbucketIssueTracker repository)Initializes the object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayName()Returns the display name of the query.StringgetFilter()Returns the filter expression of the query.Collection<BitbucketIssue>issues()Returns aCollectionview of the issues found.voidsetDisplayName(String newValue)Sets the display name of the query.voidsetFilter(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 aCollectionview of the issues found.- Returns:
- a
Collectionview of the issues found
-
-