/* * Copyright 2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.cloud.dataflow.completion; import java.util.List; import org.springframework.cloud.dataflow.core.StreamDefinition; /** * Used to enhance a well formed stream definition by adding yet more text to it * (<i>e.g.</i> adding more options to a module). * * @author Eric Bottard */ public interface ExpansionStrategy { /** * For a given stream DSL text and {@link StreamDefinition}, * <ul> * <li>Generate {@link CompletionProposal}s that apply (if any) and add them to the * provided {@code collector} list</li> * <li>Return {@code true} if no other strategies should be applied for the stream DSL * text (this strategy make take the liberty to erase already collected proposals) * </li> * </ul> * * @param text DSL text for the stream * @param streamDefinition stream definition * @param detailLevel integer representing the amount of detail to include in the * generated {@code CompletionProposal}s (higher values mean more details. typical * range is [1..5]) * @param collector list of {@code CompletionProposal}s to add/remove from if this * strategy applies * @return {@code true} if no other strategies should be applied for the stream DSL * text */ boolean addProposals(String text, StreamDefinition streamDefinition, int detailLevel, List<CompletionProposal> collector); }