PropertyPreprocessor.java :  » Development » jXLS-0.9.9 » net » sf » jxls » processor » Java Open Source

Java Open Source » Development » jXLS 0.9.9 
jXLS 0.9.9 » net » sf » jxls » processor » PropertyPreprocessor.java
package net.sf.jxls.processor;

/**
 * Allows to process cell in template before actual processing starts
 * @author Leonid Vysochin
 */
public interface PropertyPreprocessor {
    /**
     * This method is invoked for each cell in template before all other processing starts
     *
     * @param propertyTemplateName The actual cell value in template
     * @return New cell value
     */
    String processProperty(String propertyTemplateName);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.