IDeleteHandler.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 IDeleteHandler.  An interface for objects that can manage deletions on behalf of
  15.  * a CompositeTable.
  16.  */
  17. public interface IDeleteHandler {
  18. /**
  19.  * Method canDelete.  This method is called to determine if the specified row can
  20.  * be successfully deleted.  The receiver may perform whatever validation that is required
  21.  * If this is successful, the receiver should return true.  If the object cannot 
  22.  * (or must not) be deleted, the receiver must return false.
  23.  * 
  24.  * @param rowInCollection The row under consideration for deletion.
  25.  * @return true if the row can be deleted; false otherwise.
  26.  */
  27. public boolean canDelete(int rowInCollection);
  28. /**
  29.  * Method deleteRow.  This method is called when the user has requested to delete the 
  30.  * specified row.  
  31.  * 
  32.  * @param rowInCollection The row in the collection to delete (0-based).
  33.  */
  34. public void deleteRow(int rowInCollection);
  35. }