Java 类org.springframework.boot.loader.tools.Layout 实例源码

项目:syndesis    文件:ModuleLayoutFactory.java   
@Override
public Layout getLayout(File file) {
    return new Layout() {
        @Override
        public String getLauncherClassName() {
            return null;
        }

        @Override
        public String getLibraryDestination(String libraryName, LibraryScope scope) {
            if (LIB_DESTINATION_SCOPES.contains(scope)) {
                return "lib/";
            }

            return null;
        }

        @Override
        public String getClassesLocation() {
            return null;
        }

        @Override
        public boolean isExecutable() {
            return false;
        }
    };
}
项目:syndesis-rest    文件:ModuleLayoutFactory.java   
@Override
public Layout getLayout(File file) {
    return new Layout() {
        @Override
        public String getLauncherClassName() {
            return null;
        }

        @Override
        public String getLibraryDestination(String libraryName, LibraryScope scope) {
            if (LIB_DESTINATION_SCOPES.contains(scope)) {
                return "lib/";
            }

            return null;
        }

        @Override
        public String getClassesLocation() {
            return null;
        }

        @Override
        public boolean isExecutable() {
            return false;
        }
    };
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:ArchiveCommand.java   
public ArchiveOptionHandler(String type, Layout layout) {
    this.type = type;
    this.layout = layout;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:SpringBootPluginExtension.java   
LayoutType(Layout layout) {
    this.layout = layout;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:RepackageMojo.java   
public Layout layout() {
    return this.layout;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:RepackageMojo.java   
LayoutType(Layout layout) {
    this.layout = layout;
}
项目:spring-boot-concourse    文件:ArchiveCommand.java   
public ArchiveOptionHandler(String type, Layout layout) {
    this.type = type;
    this.layout = layout;
}
项目:spring-boot-concourse    文件:SpringBootPluginExtension.java   
LayoutType(Layout layout) {
    this.layout = layout;
}
项目:spring-boot-concourse    文件:RepackageMojo.java   
public Layout layout() {
    return this.layout;
}
项目:spring-boot-concourse    文件:RepackageMojo.java   
LayoutType(Layout layout) {
    this.layout = layout;
}
项目:contestparser    文件:ArchiveCommand.java   
public ArchiveOptionHandler(String type, Layout layout) {
    this.type = type;
    this.layout = layout;
}
项目:contestparser    文件:SpringBootPluginExtension.java   
LayoutType(Layout layout) {
    this.layout = layout;
}
项目:contestparser    文件:RepackageMojo.java   
public Layout layout() {
    return this.layout;
}
项目:contestparser    文件:RepackageMojo.java   
LayoutType(Layout layout) {
    this.layout = layout;
}
项目:midpoint    文件:MidPointWarLayoutFactory.java   
@Override
public Layout getLayout(File source) {
    return new MidPointWarLayout(name);
}
项目:midpoint    文件:MidPointWarLayoutFactory.java   
@Override
public Layout getLayout(File source) {
    return new MidPointWarLayout(name);
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:SpringBootPluginExtension.java   
/**
 * Convenience method for use in a custom task.
 * @return the Layout to use or null if not explicitly set
 */
public Layout convertLayout() {
    return (this.layout == null ? null : this.layout.layout);
}
项目:spring-boot-concourse    文件:SpringBootPluginExtension.java   
/**
 * Convenience method for use in a custom task.
 * @return the Layout to use or null if not explicitly set
 */
public Layout convertLayout() {
    return (this.layout == null ? null : this.layout.layout);
}
项目:contestparser    文件:SpringBootPluginExtension.java   
/**
 * Convenience method for use in a custom task.
 * @return the Layout to use or null if not explicitly set
 */
public Layout convertLayout() {
    return (this.layout == null ? null : this.layout.layout);
}