- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
package ***.modules.login.view
{
import ***.modules.login.view.skins.LoginViewSkin;
import ***.uni.mvp.View;
import spark.components.Button;
import spark.components.TextInput;
public class LoginView extends View implements ILoginView
{
/************************************************************************************
* SKIN PARTS *
************************************************************************************/
[SkinPart(required="true")]
public var emailInput:TextInput;
[SkinPart(required="true")]
public var loginButton:Button;
/************************************************************************************
* VARS *
************************************************************************************/
public function LoginView()
{
super();
}
public function get emailInputWidget():TextInput
{
return this.emailInput;
}
public function get loginButtonWidget():Button
{
return this.loginButton;
}
protected override function configureView():void
{
this.setStyle("skinClass", LoginViewSkin);
}
}
}
guest 26.06.2012 17:10 # 0
roman-kashitsyn 26.06.2012 17:47 # 0
carsten 27.06.2012 17:14 # +1
"With the release of Flash 5 in September 2000, the "actions" from Flash 4 were enhanced once more and named "ActionScript" for the first time. This was the first version of ActionScript with influences from JavaScript and the ECMA-262 "
Fai 05.07.2012 17:01 # 0