|
Fixed those two errors now error with shoe.as
package valueObjects
{
public class Shoe extends Product
{
private var width:String;
public function Shoe(name:String,categoryID:String,width:String)
{
this.name=name;
this.categoryID=categoryID;
this.width=width;
}
override public function toString():String
{
return super.toString()+":" +width;
}
}
}
|