a75a5a70a608d8e0cbf5e00447053cf70a5c4e72.svn-base 1.3 KB

123456789101112131415161718192021222324252627282930
  1. package com.kingdee.eas.custom.bd.param;
  2. import com.kingdee.bos.BOSException;
  3. //import com.kingdee.bos.metadata.*;
  4. import com.kingdee.bos.framework.*;
  5. import com.kingdee.bos.util.*;
  6. import com.kingdee.bos.Context;
  7. import com.kingdee.bos.dao.IObjectPK;
  8. import com.kingdee.bos.BOSException;
  9. import com.kingdee.bos.util.*;
  10. import com.kingdee.bos.metadata.entity.SelectorItemCollection;
  11. import com.kingdee.eas.common.EASBizException;
  12. import com.kingdee.eas.framework.CoreBaseCollection;
  13. import com.kingdee.eas.framework.CoreBaseInfo;
  14. import com.kingdee.bos.metadata.entity.EntityViewInfo;
  15. import java.lang.String;
  16. import com.kingdee.bos.Context;
  17. import com.kingdee.bos.framework.*;
  18. import com.kingdee.shr.base.syssetting.ISHRBaseItem;
  19. public interface IParam extends ISHRBaseItem
  20. {
  21. public ParamInfo getParamInfo(IObjectPK pk) throws BOSException, EASBizException;
  22. public ParamInfo getParamInfo(IObjectPK pk, SelectorItemCollection selector) throws BOSException, EASBizException;
  23. public ParamInfo getParamInfo(String oql) throws BOSException, EASBizException;
  24. public ParamCollection getParamCollection() throws BOSException;
  25. public ParamCollection getParamCollection(EntityViewInfo view) throws BOSException;
  26. public ParamCollection getParamCollection(String oql) throws BOSException;
  27. }