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

com.envoisolutions.sxc.builder.impl.JLineComment Maven / Gradle / Ivy

There is a newer version: 0.7.3
Show newest version
package com.envoisolutions.sxc.builder.impl;

import com.sun.codemodel.JStatement;
import com.sun.codemodel.JFormatter;

public class JLineComment implements JStatement {
    private final String comment;

    public JLineComment(String comment) {
        if (comment == null) throw new NullPointerException("comment is null");
        this.comment = comment;
    }

    public void state(JFormatter f) {
        for (String value : comment.split("[\r\n]")) {
            f.p("// " + value).nl();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy