Package | Description |
---|---|
org.springframework.cloud.dataflow.completion |
Contains classes related to code-completion of stream definitions expressed
in the Spring Cloud Dataflow DSL.
|
org.springframework.cloud.dataflow.server.completion |
Contains classes for the auto-completion support.
|
Modifier and Type | Method and Description |
---|---|
CompletionProposal |
CompletionProposal.Factory.withSeparateTokens(String suffix)
Add a suffix as a new token, that is, make sure there is a space before it.
|
CompletionProposal |
CompletionProposal.Factory.withSeparateTokens(String suffix,
String explanation)
Add a suffix as a new token, that is, make sure there is a space before it.
|
CompletionProposal |
CompletionProposal.Factory.withSuffix(String suffix) |
CompletionProposal |
CompletionProposal.Factory.withSuffix(String suffix,
String explanation) |
Modifier and Type | Method and Description |
---|---|
List<CompletionProposal> |
StreamCompletionProvider.complete(String dslStart,
int detailLevel) |
Modifier and Type | Method and Description |
---|---|
void |
UnfinishedConfigurationPropertyNameRecoveryStrategy.addProposals(String dsl,
CheckPointedParseException exception,
int detailLevel,
List<CompletionProposal> collector) |
void |
ConfigurationPropertyValueHintRecoveryStrategy.addProposals(String dsl,
CheckPointedParseException exception,
int detailLevel,
List<CompletionProposal> collector) |
void |
AppsAfterPipeRecoveryStrategy.addProposals(String dsl,
CheckPointedParseException exception,
int detailLevel,
List<CompletionProposal> collector) |
void |
RecoveryStrategy.addProposals(String dsl,
E exception,
int detailLevel,
List<CompletionProposal> proposals)
Perform code completion by adding proposals to the
proposals list. |
boolean |
UnfinishedAppNameExpansionStrategy.addProposals(String text,
StreamDefinition streamDefinition,
int detailLevel,
List<CompletionProposal> collector) |
boolean |
PipeIntoOtherAppsExpansionStrategy.addProposals(String text,
StreamDefinition parseResult,
int detailLevel,
List<CompletionProposal> collector) |
boolean |
ExpansionStrategy.addProposals(String text,
StreamDefinition streamDefinition,
int detailLevel,
List<CompletionProposal> collector)
For a given stream DSL text and
StreamDefinition ,
Generate CompletionProposal s that apply (if any)
and add them to the provided collector list
Return true if no other strategies should be applied for
the stream DSL text (this strategy make take the liberty to erase
already collected proposals)
|
boolean |
ConfigurationPropertyValueHintExpansionStrategy.addProposals(String text,
StreamDefinition parseResult,
int detailLevel,
List<CompletionProposal> collector) |
Modifier and Type | Method and Description |
---|---|
void |
TapOnDestinationRecoveryStrategy.addProposals(String dsl,
ParseException exception,
int detailLevel,
List<CompletionProposal> collector) |
Copyright © 2016 Pivotal Software, Inc.. All rights reserved.