Go Back   CodingForums.com > :: Client side development > JavaScript programming > DOM and JSON scripting

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-15-2011, 11:13 AM   PM User | #1
cap10Ibrahim
New to the CF scene

 
Join Date: Sep 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
cap10Ibrahim is an unknown quantity at this point
Unhappy Simple Inheritance (in a namespace) need help

Code:
// global namespace 
var STATES = STATES || {};
STATES.NormalState = function (x,y) { return {
   type:"generic state",
   xPoint:x,
   yPoint:y,
   color:"blue"
 };
}
STATES.NormalState.prototype.draw = function(context){
 context.beginPath();
 context.arc(this.xPoint,this.yPoint,10,0,Math.PI*2,true); // circle
 context.fillStyle=this.color;
 context.fill();
}
this isn't adding draw to the STATES.NormalState object when created with new how to add this shared method ?

Last edited by cap10Ibrahim; 09-15-2011 at 11:45 AM..
cap10Ibrahim is offline   Reply With Quote
Old 09-15-2011, 11:35 AM   PM User | #2
cap10Ibrahim
New to the CF scene

 
Join Date: Sep 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
cap10Ibrahim is an unknown quantity at this point
Thumbs up Solution

Now it works , I redefined NormalState as follows
Code:
STATES.NormalState = function (x,y) { 
   this.type="generic state",
   this.xPoint=x;
   this.yPoint=y;
   this.color="blue";
   return this;
}
now the augmented methods with prototype are working !
cap10Ibrahim is offline   Reply With Quote
Reply

Bookmarks

Tags
javascript, namespace, prototype

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:45 PM.


Advertisement
Log in to turn off these ads.