IInsertHandler.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. /**
  14.  * Interface IInsertHandler.  An interface for objects that can handle requests to insert a new
  15.  * object into a collection being edited by a CompositeTable.
  16.  * 
  17.  * @author djo
  18.  */
  19. public interface IInsertHandler {
  20. /**
  21.  * Method insert.  Requests that the receiver insert object(s) making up a new row at 
  22.  * the specified position.  The receiver returns the actual position where the insert
  23.  * occured (that doesn't have to be the same as the requested position).
  24.  * 
  25.  * @param positionHint The user's current position in the user interface relative to the 
  26.  * beginning of the collection (0-based).
  27.  * 
  28.  * @return the actual position of the new object.
  29.  */
  30. public int insert(int positionHint);
  31. }