peterjavaee / ck-jsf-editor

Automatically exported from code.google.com/p/ck-jsf-editor
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Config.templates is missing #10

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Look in Config class, no templates attribute
2.
3.

What is the expected output? What do you see instead?
Config.templates is a String containing a comma delimited list of the template 
groups in Config.template_files.

What version of the product are you using? On what operating system?
0.9.4 Centos5.6/Tomcat 6

Please provide any additional information below.
Need to add to Config.java:

    private String templates;

    public Config templates(String templates) {
        setTemplates(templates);
        return this;
    }
    public String getTemplates() {
        return templates;
    }
    private void setTemplates(String templates) {
        this.templates = templates;
    }

Original issue reported on code.google.com by eddyg.o....@gmail.com on 12 Mar 2012 at 1:01