private PropertyDescriptor getPropertyDescriptor()

in org.apache.easyant4e/src/org/apache/easyant4e/ivyde/extension/model/EasyAntModuleDescriptorExtension.java [282:292]


    private PropertyDescriptor getPropertyDescriptor(String buildType, String propertyName) {
        if(propertyDescriptorsCache==null){
            propertyDescriptorsCache= easyantCoreService.getPropertiesForBuildType(buildType);
        }
        for (PropertyDescriptor propertyDescriptor : propertyDescriptorsCache) {
            if (propertyName.equals(propertyDescriptor.getName())) {
                return propertyDescriptor;
            }
        }
        return null;
    }