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

com.thoughtworks.qdox.model.expression.Lambda Maven / Gradle / Ivy

Go to download

QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools.

The newest version!
package com.thoughtworks.qdox.model.expression;

public class Lambda implements AnnotationValue
{
    @Override
    public Object getParameterValue()
    {
        return "";
    }

    @Override
    public Object accept( ExpressionVisitor visitor )
    {
        return visitor.visit( this );
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy