/*
 * module About
 */
function MiyabiModuleAbout(){
  try {
    this.constructor = MiyabiModule;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiModuleAbout.prototype = new MiyabiModule;


/*
 * action Miyabi
 */
function MiyabiActionAboutMiyabi(module){
  try {
    this.constructor = MiyabiAction;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiActionAboutMiyabi.prototype = new MiyabiAction;


/*
 * view Miyabi
 */
function MiyabiViewAboutMiyabi(module){
  try {
    this.constructor = MiyabiView;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiViewAboutMiyabi.prototype = new MiyabiView;


MiyabiViewAboutMiyabi.prototype.exec = function(module){
  try {
    var Econtent = document.getElementById("content");
    var Esrc = document.getElementById("AboutMiyabi");
    Econtent.innerHTML = Esrc.innerHTML;
  } catch(e){
    this.errorHandler(e);
  }
}


/*
 * action Features
 */
function MiyabiActionAboutFeatures(module){
  try {
    this.constructor = MiyabiAction;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiActionAboutFeatures.prototype = new MiyabiAction;


/*
 * view Features
 */
function MiyabiViewAboutFeatures(module){
  try {
    this.constructor = MiyabiView;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiViewAboutFeatures.prototype = new MiyabiView;


MiyabiViewAboutFeatures.prototype.exec = function(module){
  try {
    var Econtent = document.getElementById("content");
    var Esrc = document.getElementById("AboutFeatures");
    Econtent.innerHTML = Esrc.innerHTML;
  } catch(e){
    this.errorHandler(e);
  }
}


/*
 * action Javascript
 */
function MiyabiActionAboutJavascript(module){
  try {
    this.constructor = MiyabiAction;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiActionAboutJavascript.prototype = new MiyabiAction;


/*
 * view Javascript
 */
function MiyabiViewAboutJavascript(module){
  try {
    this.constructor = MiyabiView;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiViewAboutJavascript.prototype = new MiyabiView;


MiyabiViewAboutJavascript.prototype.exec = function(module){
  try {
    var Econtent = document.getElementById("content");
    var Esrc = document.getElementById("AboutJavascript");
    Econtent.innerHTML = Esrc.innerHTML;
  } catch(e){
    this.errorHandler(e);
  }
}


/*
 * action MVC
 */
function MiyabiActionAboutMVC(module){
  try {
    this.constructor = MiyabiAction;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiActionAboutMVC.prototype = new MiyabiAction;


/*
 * view MVC
 */
function MiyabiViewAboutMVC(module){
  try {
    this.constructor = MiyabiView;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiViewAboutMVC.prototype = new MiyabiView;


MiyabiViewAboutMVC.prototype.exec = function(module){
  try {
    var Econtent = document.getElementById("content");
    var Esrc = document.getElementById("AboutMVC");
    Econtent.innerHTML = Esrc.innerHTML;
  } catch(e){
    this.errorHandler(e);
  }
}

