GuideValidationResult.java
823 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.aemds.guide.common;
import com.adobe.aemds.guide.common.GuideError;
import java.util.List;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public class GuideValidationResult {
List<GuideError> guideErrorList;
public GuideValidationResult() {
}
public GuideValidationResult(List<GuideError> guideErrorList) {
this.guideErrorList = guideErrorList;
}
public List<GuideError> getGuideErrorList() {
return this.guideErrorList;
}
public void setGuideErrorList(List<GuideError> guideErrorList) {
this.guideErrorList = guideErrorList;
}
public boolean hasErrors() {
return this.guideErrorList != null && this.guideErrorList.size() > 0;
}
}