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

com.sun.codemodel.JAnnotationStringValue Maven / Gradle / Ivy

There is a newer version: 1.15.9.2
Show newest version
package com.sun.codemodel;

/**
 * @author xwx
 */
public final class JAnnotationStringValue extends JAnnotationValue {
    private final JExpression value;

    JAnnotationStringValue(JExpression value) {
        this.value = value;
    }

    public void generate(JFormatter f) {
        f.g(this.value);
    }

    public String getValue(){
        return value.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy