View Single Post
Old 06-25-2012, 05:15 AM   PM User | #2
Ohthatsnasty
New to the CF scene

 
Join Date: Jun 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Ohthatsnasty is an unknown quantity at this point
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;
}
}
}
Ohthatsnasty is offline   Reply With Quote