回転と脱線

UmbrelloでUML書くとjavascriptのコードにも落とせます。

javasciptでOOってどうやるの?って思ってる方は参考にしてみてはどうでしょう?

しらなかったー。 のでやってみました。

umbrello_js

/**
  * class Parser
  */
Parser = function ()
{
  this._init ();
}

/**
 * _init sets all Parser attributes to their default value. Make sure to call this
 */
Parser.prototype._init = function ()
{
  /**
   */
  this.m_handler = "";

  /**Aggregations: */

  /**Compositions: */

}

/**
 */
Parser.prototype.parse function ()
{

}

ココでいうと、『プロトタイプにメソッドを追加する。コンストラクタをプロトタイプに実装する。』タイプですな。

あれ、でも最後のParser.prototype.parse function ()とか動くのかな?

Comments


Option