org.nuiton.eugene.yaml.UserFriendlyTemplatesGenerator Maven / Gradle / Ivy
package org.nuiton.eugene.yaml;
/*
* #%L
* EUGene :: YAML templates
* %%
* Copyright (C) 2013 - 2017 Code Lutin, Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import org.codehaus.plexus.component.annotations.Component;
import org.nuiton.eugene.Template;
import org.nuiton.eugene.models.object.ObjectModel;
import org.nuiton.eugene.models.object.ObjectModelGenerator;
import org.nuiton.eugene.models.object.reader.yaml.KeyWords;
import java.io.IOException;
import java.io.Writer;
/**
* @author agiraudet - [email protected]
* @since 2.6.4
*/
@Component(role = Template.class, hint = "org.nuiton.eugene.yaml.UserFriendlyTemplatesGenerator")
public class UserFriendlyTemplatesGenerator extends ObjectModelGenerator implements KeyWords {
@Override
public void generateFromModel(Writer output, ObjectModel input) throws IOException {
;//TODO
}
@Override
public String getFilenameForModel(ObjectModel model) {
return model.getName() + ".yamlobjectmodel";
}
}