| java.lang.Object | ||
| ↳ | com.atlassian.bitbucket.pull.AbstractPullRequestRequest | |
| ↳ | com.atlassian.bitbucket.pull.PullRequestDiffRequest | |
Request arguments for streamDiff(PullRequestDiffRequest, DiffContentCallback).
| Nested Classes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| PullRequestDiffRequest.Builder | |||||||||||
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| int | DEFAULT_CONTEXT_LINES | Indicates the request should supply the default number of context lines for added and removed lines. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Retrieves the numbers of context lines to show around added and removed lines.
| |||||||||||
Retrieves a flag indicating whether an explicit number of context lines has been requested.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.bitbucket.pull.AbstractPullRequestRequest
| |||||||||||
From class
java.lang.Object
| |||||||||||
Indicates the request should supply the default number of context lines for added and removed lines. The default is configurable, so it may be changed by a system administrator. The shipped setting is 10 lines.
Retrieves the numbers of context lines to show around added and removed lines. If the value is 0 context
will be omitted and only added and removed lines will be shown. For positive values, that number of lines will
be shown. For negative values, the system-configured default number will be shown.
sinceId for the diff requestedcopies and
moves/renames and null for other types
untilId for the diff requestedRetrieves a flag indicating whether an explicit number of context lines has been requested. When this method
returns true, getContextLines() will return a value greater than or equal to 0, When
it returns false, getContextLines() will return DEFAULT_CONTEXT_LINES.
true if a non-default number of context lines has been requested;
otherwise, false to use the default number of lines