Uses of Interface
edu.rice.cs.drjava.ui.predictive.PredictiveInputModel.MatchingStrategy

Packages that use PredictiveInputModel.MatchingStrategy
edu.rice.cs.drjava.ui.predictive   
 

Uses of PredictiveInputModel.MatchingStrategy in edu.rice.cs.drjava.ui.predictive
 

Classes in edu.rice.cs.drjava.ui.predictive that implement PredictiveInputModel.MatchingStrategy
static class PredictiveInputModel.FragmentLineNumStrategy<X extends Comparable<? super X>>
          Matching based on string fragments, supporting line numbers.
static class PredictiveInputModel.FragmentStrategy<X extends Comparable<? super X>>
          Matching based on string fragments.
static class PredictiveInputModel.PrefixLineNumStrategy<X extends Comparable<? super X>>
          Matching based on string prefix, supporting line numbers separated by :.
static class PredictiveInputModel.PrefixStrategy<X extends Comparable<? super X>>
          Matching based on string prefix.
static class PredictiveInputModel.RegExLineNumStrategy<X extends Comparable<? super X>>
          Matching based on string regular expressions, supporting line numbers.
static class PredictiveInputModel.RegExStrategy<X extends Comparable<? super X>>
          Matching based on string regular expressions.
 

Methods in edu.rice.cs.drjava.ui.predictive with parameters of type PredictiveInputModel.MatchingStrategy
 void PredictiveInputModel.setStrategy(PredictiveInputModel.MatchingStrategy<T> strategy)
          Sets the strategy
 

Constructors in edu.rice.cs.drjava.ui.predictive with parameters of type PredictiveInputModel.MatchingStrategy
PredictiveInputModel(boolean ignoreCase, PredictiveInputModel.MatchingStrategy<T> strategy, List<T> items)
          Create a new predictive input model.
PredictiveInputModel(boolean ignoreCase, PredictiveInputModel.MatchingStrategy<T> strategy, T... items)
          Create a new predictive input model.
 

Constructor parameters in edu.rice.cs.drjava.ui.predictive with type arguments of type PredictiveInputModel.MatchingStrategy
PredictiveInputFrame(SwingFrame owner, String title, boolean force, boolean ignoreCase, PredictiveInputFrame.InfoSupplier<? super T> info, List<PredictiveInputModel.MatchingStrategy<T>> strategies, List<PredictiveInputFrame.CloseAction<T>> actions, int cancelIndex, List<T> items)
          Create a new predictive string input frame.
PredictiveInputFrame(SwingFrame owner, String title, boolean force, boolean ignoreCase, PredictiveInputFrame.InfoSupplier<? super T> info, List<PredictiveInputModel.MatchingStrategy<T>> strategies, List<PredictiveInputFrame.CloseAction<T>> actions, int cancelIndex, T... items)
          Create a new predictive string input frame.