com.googlecode.jpattern.shared.result.NullResult Maven / Gradle / Ivy
package com.googlecode.jpattern.shared.result;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author Francesco Cina'
*
* 11/mag/2011
*/
public class NullResult implements IResult {
private static final long serialVersionUID = 1L;
@Override
public List getErrorMessages() {
return new ArrayList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy