Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LANGUAGE_LEVEL (0.14 sec)

  1. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

        IdeaModuleFixture(TestFile file, GPathResult iml) {
            this.iml = iml
            this.file = file
        }
    
        String getLanguageLevel() {
            if (iml.component.@LANGUAGE_LEVEL.size() != 0) {
                return iml.component.@LANGUAGE_LEVEL
            }
            return null
        }
    
        IdeaContentRoot getContent() {
            def contentRoot = iml.component.content
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        }
    
        private void writeSourceLanguageLevel() {
            if (languageLevel != null) {
                setNodeAttribute(getNewModuleRootManager(), "LANGUAGE_LEVEL", languageLevel);
            }
        }
    
        private void addOutputDirsToXml() {
            if (outputDir != null) {
                setNodeAttribute(findOrCreateOutputDir(), "url", outputDir.getUrl());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top