在我的班级中,我构建了一个 Weather VO(视觉对象),现在需要将它用于另一个班级。我将如何使用它来修改第二堂课中文本字段的值?我尝试使用 getter 和 setter 无济于事。
第一页:
vo=new WeatherVO();//Visual Object for the weather data
vo.city = _xmlData.channel.ns1::location.@city+", "+_xmlData.channel.ns1::location.@region;//city, st
vo.currentTemp = _xmlData.channel.item.ns1::condition.@temp;
vo.currentCondition = _xmlData.channel.item.ns1::condition.@text;
vo.currentCode = _xmlData.channel.item.ns1::condition.@code;
vo.sunrise = _xmlData.channel.ns1::astronomy.@sunrise;
vo.sunset = _xmlData.channel.ns1::astronomy.@sunset;
第二页:
public function set vo(value:WeatherVO):void
{
_weather=value;
}
public function get vo():WeatherVO
{
return _weather;
}