1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ui.views.properties; 12 13 /** 14 * Listener for changes in objects of type 15 * <code>IPropertySheetEntry</code>. 16 * <p> 17 * This interface is public since it appears in the api 18 * of <code>IPropertySheetEntry</code>. It is not intended 19 * to be implemented outside of this package. 20 * <p> 21 */ 22 public interface IPropertySheetEntryListener { 23 /** 24 * A node's children have changed (children added or removed) 25 * 26 * @param node the node whose's children have changed 27 */ 28 void childEntriesChanged(IPropertySheetEntry node); 29 30 /** 31 * A entry's error message has changed 32 * 33 * @param entry the entry whose's error message has changed 34 */ 35 void errorMessageChanged(IPropertySheetEntry entry); 36 37 /** 38 * A entry's value has changed 39 * 40 * @param entry the entry whose's value has changed 41 */ 42 void valueChanged(IPropertySheetEntry entry); 43 } 44