All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nuiton.eugene.yaml.UserFriendlyTemplatesGenerator Maven / Gradle / Ivy

There is a newer version: 3.0-alpha-43
Show newest version
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";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy