HomeSort by relevance Sort by last modified time
    Searched refs:symbolResolver (Results 1 - 2 of 2) sorted by null

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
ParserConfiguration.java 28 import com.github.javaparser.resolution.SymbolResolver;
93 private SymbolResolver symbolResolver = null;
123 postProcessors.add((result, configuration) -> configuration.getSymbolResolver().ifPresent(symbolResolver ->
126 resultNode.setData(Node.SYMBOL_RESOLVER_KEY, symbolResolver);
245 * Retrieve the SymbolResolver to be used while parsing, if any.
247 public Optional<SymbolResolver> getSymbolResolver() {
248 return Optional.ofNullable(symbolResolver);
252 * Set the SymbolResolver to be injected while parsing.
254 public ParserConfiguration setSymbolResolver(SymbolResolver symbolResolver)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
Node.java 41 import com.github.javaparser.resolution.SymbolResolver;
678 protected SymbolResolver getSymbolResolver() {
680 SymbolResolver symbolResolver = cu.getData(SYMBOL_RESOLVER_KEY);
681 if (symbolResolver == null) {
682 throw new IllegalStateException("Symbol resolution not configured: to configure consider setting a SymbolResolver in the ParserConfiguration");
684 return symbolResolver;
689 public static final DataKey<SymbolResolver> SYMBOL_RESOLVER_KEY = new DataKey<SymbolResolver>() {
    [all...]

Completed in 115 milliseconds