Package org.apache.easyant.tasks

Examples of org.apache.easyant.tasks.ParameterTask


                Class<?> taskClass = ComponentHelper.getComponentHelper(project).getComponentClass(task.getTaskType());
                if (taskClass == null) {
                    continue;
                }
                if (ParameterTask.class.isAssignableFrom(taskClass)) {
                    ParameterTask parameterTask = (ParameterTask) maybeConfigureTask(task);
                    handleParameterTask(parameterTask, eaReport);
                }
                if (Property.class.isAssignableFrom(taskClass)) {
                    Property propertyTask = (Property) maybeConfigureTask(task);
                    handleProperty(propertyTask, eaReport);
View Full Code Here

TOP

Related Classes of org.apache.easyant.tasks.ParameterTask

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.