Use the set and get methods in Flex (simple example)

Source: Internet
Author: User

Student. As content:

Package com. Model
{
Public class student
{
Public Function student ()
{
}

Private var name: string;

Public Function set setname (Name: string): void {
This. Name = Name;
}

Public Function get getname (): String {
Return this. Name;
}
}
}

 

Content of test. mxml:

<Mx: Application xmlns: MX = "http://www.adobe.com/2006/mxml" layout = "vertical">
<Mx: SCRIPT>
<! [CDATA [
Import MX. Controls. Alert;
Import com. model. student;
[Bindable]
Private var STU: Student = new student ();

Private function Init (): void {
Stu. setname = "Liusong ";
}
]>
</MX: SCRIPT>
<Mx: canvas width = "100%" Height = "100%" backgroundcolor = "# ffffff">
<Mx: Label text = "{Stu. getname}" x = "195" Y = "100"/>
<Mx: textinput text = "{Stu. getname}" id = "_ textinput" initialize = "Init ()"/>
</MX: canvas>
</MX: Application>

 

Note: parameter initialization sequence

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.