Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: dd343e2c87e5e3e67789219be9e420d32ffdd032 (plain) (tree)
1
2
3
4
5
6
7
                                                                                
                                                       

                                                                        
                                                           

                                            





                                                                                 
                                                         
 
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.tests.viewers;

public interface ITestModelListener {
    public void testModelChanged(TestModelChange change);
}

Back to the top