/** * MatrixCellModel.java * * Copyright 2000 Eliad Technologies, Inc. All Rights Reserved. * * This software is the proprietary information of Eliad Technologies, Inc. */ package MultiDimTable; import com.eliad.model.ExtentCell; public interface MatrixCellModel { public boolean isSpanEmpty(); public ExtentCell getExtentCell(); public Object getValue(); }