/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.web.dispaly.grid; /** * <p> IGridNode.java </p> * * Grid数据对象接口。 * 所有需要用Grid展示的实体类都需要实现本接口。 * */ public interface IGridNode { /** * 实体类实现本方法时,将需要在Grid里展示的属性放入到GridAttributesMap中 * @return */ public GridAttributesMap getAttributes(GridAttributesMap map); }