Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getGrammarFiles (0.39 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSpec.java

            this.outputDirectory = outputDirectory;
            this.maxHeapSize = maxHeapSize;
        }
    
        public List<String> getArguments() {
            return arguments;
        }
    
        public Set<File> getGrammarFiles() {
            return grammarFiles;
        }
    
        public String getMaxHeapSize() {
            return maxHeapSize;
        }
    
        public File getOutputDirectory() {
            return outputDirectory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

                        arguments.add("-o");
                        arguments.add(spec.getOutputDirectory().getAbsolutePath());
                        for (File grammarFile : spec.getGrammarFiles()) {
                            String relativeGrammarFilePath = RelativePathUtil.relativePath(inputDirectory, grammarFile);
                            if (onWindows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top