Package org.apache.maven.usability.plugin

Examples of org.apache.maven.usability.plugin.Expression


        }

        for ( Iterator it = m.keySet().iterator(); it.hasNext(); )
        {
            String key = (String) it.next();
            Expression expression = (Expression) m.get( key );

            sb.append( "${" ).append( key ).append( "}: " );
            sb.append( trimCDATA( expression.getDescription() ) );
            sb.append( "\n\n" );
        }

        if ( output != null )
        {
View Full Code Here

TOP

Related Classes of org.apache.maven.usability.plugin.Expression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.