Package org.codehaus.plexus.interpolation

Examples of org.codehaus.plexus.interpolation.InterpolationPostProcessor


                        if ( postProcessors != null && !postProcessors.isEmpty() )
                        {
                            for ( Iterator it = postProcessors.iterator(); it.hasNext(); )
                            {
                                InterpolationPostProcessor postProcessor = (InterpolationPostProcessor) it.next();
                                Object newVal = postProcessor.execute( realExpr, value );
                                if ( newVal != null )
                                {
                                    value = newVal;
                                    break;
                                }
View Full Code Here

TOP

Related Classes of org.codehaus.plexus.interpolation.InterpolationPostProcessor

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.