blob: 2921698ec3b6297a56006c2289b345865139e104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*******************************************************************************
* Copyright (c) 2011 Laurent CARON.
* 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:
* Laurent CARON (laurent.caron@gmail.com) - initial API and implementation
*******************************************************************************/
package org.mihalis.opal.transitionComposite;
import org.eclipse.swt.widgets.Control;
/**
* This interface describes a transition
*/
interface Transition {
/**
* Performs a transition between 2 controls of a TransitionComposite
*
* @param first first control
* @param second second control
*/
void performTransition(Control first, Control second);
}
|