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

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

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

import com.sun.codemodel.JExpressionImpl;
import com.sun.codemodel.JFormatter;

public class JEnumLabel extends JExpressionImpl {
    private final String enumName;

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

    public void generate(JFormatter f) {
        f.p(enumName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy