Merge sources from S-Core's RSA git (release)
[sdk/ide/common-eplugin.git] / org.tizen.common.externals / src / org / mihalis / opal / transitionComposite / UpDownAppearTransition.java
1 /*******************************************************************************\r
2  * Copyright (c) 2011 Laurent CARON.\r
3  * All rights reserved. This program and the accompanying materials\r
4  * are made available under the terms of the Eclipse Public License v1.0\r
5  * which accompanies this distribution, and is available at\r
6  * http://www.eclipse.org/legal/epl-v10.html\r
7  *\r
8  * Contributors:\r
9  *     Laurent CARON (laurent.caron@gmail.com) - initial API and implementation\r
10  *******************************************************************************/\r
11 package org.mihalis.opal.transitionComposite;\r
12 \r
13 /**\r
14  * In this transition, the second control is behind, the first control is\r
15  * sliding from up to down\r
16  */\r
17 public class UpDownAppearTransition extends VerticalTransition {\r
18 \r
19         /**\r
20          * @see org.mihalis.opal.transitionComposite.VerticalTransition#getCoeff()\r
21          */\r
22         @Override\r
23         protected int getCoeff() {\r
24                 return 1;\r
25         }\r
26 \r
27         /**\r
28          * @see org.mihalis.opal.transitionComposite.VerticalTransition#secondIsBehind()\r
29          */\r
30         @Override\r
31         protected boolean secondIsBehind() {\r
32                 return false;\r
33         }\r
34 }\r