Package greed.code.transform

Source Code of greed.code.transform.AppendingTransformer

package greed.code.transform;

import greed.code.CodeByLine;
import greed.code.CodeTransformer;

/**
* Greed is good! Cheers!
*/
public class AppendingTransformer implements CodeTransformer {

    private final String text;

    public AppendingTransformer(String text) {
        this.text = text;
    }

    @Override
    public CodeByLine transform(CodeByLine input) {
        CodeByLine res = new CodeByLine(input);
        res.getLines().add(text);
        return res;
    }
}
TOP

Related Classes of greed.code.transform.AppendingTransformer

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.