Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getGenerateTo (0.1 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * Please refer to documentation on <b>moduleName</b> property.
         * In IntelliJ IDEA the module name is the same as the name of the *.iml file.
         */
        public File getOutputFile() {
            return new File(iml.getGenerateTo(), getName() + ".iml");
        }
    
        public void setOutputFile(File newOutputFile) {
            setName(newOutputFile.getName().replaceFirst("\\.iml$", ""));
            getIml().setGenerateTo(newOutputFile.getParentFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top