IRowContentProvider.java
上传用户:hengxinggs
上传日期:2008-01-15
资源大小:212k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Java

  1. /*
  2.  * Copyright (C) 2005 David Orme <djo@coconut-palm-software.com>
  3.  * 
  4.  * All rights reserved. This program and the accompanying materials
  5.  * are made available under the terms of the Eclipse Public License v1.0
  6.  * which accompanies this distribution, and is available at
  7.  * http://www.eclipse.org/legal/epl-v10.html
  8.  *
  9.  * Contributors:
  10.  *     David Orme     - Initial API and implementation
  11.  */
  12. package org.eclipse.jface.examples.databinding.compositetable;
  13. import org.eclipse.swt.widgets.Control;
  14. /**
  15.  * Interface IRowContentProvider.  An interface for objects that are able to initialize an
  16.  * arbitrary row control with values on demand.
  17.  * @author djo
  18.  */
  19. public interface IRowContentProvider {
  20. /**
  21.  * Method refresh.  Requests receiver to refresh the currentRowInTable with data
  22.  * to edit.
  23.  * 
  24.  * @param sender The CompositeTable sending the message.
  25.  * @param currentObjectOffset The 0-based row number that is offset in the data structure of 
  26.  * the table's top row.
  27.  * @param row The row control to fill with data.  This will be a copy of your prototype 
  28.  * row object.
  29.  */
  30. void refresh(CompositeTable sender, int currentObjectOffset, Control row);
  31. }