Subversion Repositories HomeAutomation

Rev

Rev 1398 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. class MenuDataObj {
  2.    
  3.     var id:String;
  4.     var title:String;
  5.     var description:String;
  6.    
  7.     //länka till en menuitem och eller en xmlitem
  8.    
  9.     function MenuDataObj (id:String, title:String, description:String) {
  10.         this.id = id;
  11.         this.title = title;
  12.         this.description = description;
  13.        
  14.        
  15.     }       //end constructor
  16.    
  17.            
  18.        
  19. }