/** * Դ�������ƣ�CompilationResult.java * �������Ȩ���������ӹɷ����޹�˾ ��Ȩ���� * ϵͳ���ƣ�JRES Studio * ģ�����ƣ�com.hundsun.ares.studio.jres.core * ����˵����JRES Studio�Ļ����ܹ���ģ�͹淶 * ����ĵ��� * ���ߣ� */ package com.hundsun.ares.studio.jres.compiler; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; /** * @author gongyf * */ public class CompilationResult { private IStatus status = Status.OK_STATUS; /** * @return the status */ public IStatus getStatus() { return status; } /** * @param status the status to set */ public void setStatus(IStatus status) { this.status = status; } }