Package com.jverrecchia.initializr.builder.mode

Source Code of com.jverrecchia.initializr.builder.mode.Css

package com.jverrecchia.initializr.builder.mode;

import com.jverrecchia.initializr.builder.files.File;

public class Css extends Mode{
 
  public Css(){
    this.setName("CSS");
    this.setId("css");
    this.setFileName("initializr-verekia");
    this.getFiles().add(new File("index.html", "builder/templates/index.html", true, true));
    this.getFiles().add(new File("css/main.css", "builder/templates/main.css", true, true));
    this.getDefaultModulesNames().add("h5bp-stylefile");
    this.getDefaultModulesNames().add("h5bp-primarystyles");
  }
}
TOP

Related Classes of com.jverrecchia.initializr.builder.mode.Css

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.