Package com.kodcu.bean

Source Code of com.kodcu.bean.Config

package com.kodcu.bean;

import com.esotericsoftware.yamlbeans.YamlWriter;

import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
* Created by usta on 30.08.2014.
*/
public class Config {

    private String fontSize;
    private String fontFamily;
    private Integer recentFileListSize;
    private boolean directoryPanel;
    private String theme;
    private String scrollSpeed;
    private String workingDirectory;
    private String kindlegenDir;

    public String getFontSize() {
        return fontSize;
    }

    public void setFontSize(String fontSize) {
        this.fontSize = fontSize;
    }

    public String getFontFamily() {
        return fontFamily;
    }

    public void setFontFamily(String fontFamily) {
        this.fontFamily = fontFamily;
    }

    public static void main(String[] args) throws IOException {
        YamlWriter writer = new YamlWriter(new FileWriter("C:\\Users\\usta\\Dropbox\\AsciidocFX\\conf\\config.yml"));
        writer.getConfig().setClassTag("Config", Config.class);
        Config config = new Config();
        config.setTheme("ace/theme/ace");
        config.setFontSize("14px");
        config.setDirectoryPanel(true);
        config.setRecentFileListSize(10);
        config.setScrollSpeed("0.1");
        config.setFontFamily("monospace");
        config.setWorkingDirectory(null);
        writer.write(config);
        writer.close();
    }

    public void setDirectoryPanel(boolean directoryPanel) {
        this.directoryPanel = directoryPanel;
    }

    public boolean isDirectoryPanel() {
        return directoryPanel;
    }

    public boolean getDirectoryPanel() {
        return directoryPanel;
    }

    public void setTheme(String theme) {
        this.theme = theme;
    }

    public String getTheme() {
        return theme;
    }

    public void setScrollSpeed(String scrollSpeed) {
        this.scrollSpeed = scrollSpeed;
    }

    public String getScrollSpeed() {
        return scrollSpeed;
    }

    public Integer getRecentFileListSize() {
        return recentFileListSize;
    }

    public void setRecentFileListSize(Integer recentFileListSize) {
        this.recentFileListSize = recentFileListSize;
    }

    public String getWorkingDirectory() {
        return workingDirectory;
    }

    public void setWorkingDirectory(String workingDirectory) {
        this.workingDirectory = workingDirectory;
    }

    public String getKindlegenDir() {
        return kindlegenDir;
    }

    public void setKindlegenDir(String kindlegenDir) {
        this.kindlegenDir = kindlegenDir;
    }
}
TOP

Related Classes of com.kodcu.bean.Config

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.