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

com.redhat.ceylon.compiler.java.codegen.AnnotationArgument Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.compiler.java.codegen;

import com.redhat.ceylon.model.loader.NamingBase.Prefix;
import com.redhat.ceylon.model.typechecker.model.Parameter;

/**
 * An argument in an annotation invocation
 */
public class AnnotationArgument implements AnnotationFieldName {

    private AnnotationTerm term;
    private Parameter parameter;
    public AnnotationArgument() {
        
    }
    /**
     * The value of the argument
     */
    public AnnotationTerm getTerm() {
        return term;
    }
    public void setTerm(AnnotationTerm term) {
        this.term = term;
    }
    /**
     * The formal parameter corresponding to this argument.
     */
    public Parameter getParameter() {
        return parameter;
    }
    public void setParameter(Parameter parameter) {
        this.parameter = parameter;
    }
    @Override
    public String toString() {
        return parameter.getName()+ " = " + term; 
    }
    @Override
    public String getFieldName() {
        return getParameter().getName();
    }
    @Override
    public Prefix getFieldNamePrefix() {
        return Prefix.$arg$;
    }
    @Override
    public Parameter getAnnotationField() {
        return getParameter();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy