/** * Դ�������ƣ�NullPropertyHandler.java * �������Ȩ���������ӹɷ����޹�˾ ��Ȩ���� * ϵͳ���ƣ�JRES Studio * ģ�����ƣ�com.hundsun.ares.studio.biz.core * ����˵����$desc * ����ĵ��� * ���ߣ�sundl */ package com.hundsun.ares.studio.core.excel.handler; /** * ʲô�����������Դ������ⱨ��������汾�ŵȲ���Ҫ��������ԣ� * @author sundl * */ public class NullPropertyHandler implements IPropertyHandler { public static NullPropertyHandler INSTANCE = new NullPropertyHandler(); /* (non-Javadoc) * @see com.hundsun.ares.studio.biz.excel.handlers.IPropertyHandler#setValue(java.lang.Object, java.lang.String) */ @Override public void setValue(Object obj, String value) { } /* (non-Javadoc) * @see com.hundsun.ares.studio.biz.excel.handlers.IPropertyHandler#getValue(java.lang.Object) */ @Override public String getValue(Object obj) { return null; } }