In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

あなたの区切り線を教えて!(clockmaker流)

Flash Builder のプラグイン Flex Formatter を使って、いつもこのぐらいにフォーマットしています。
Get Adobe Flash player
by clockmaker 09 Dec 2010
    Embed
// forked from paq's あなたの区切り線を教えて!
// licence: NYSL
// licence: NYSL
/**
 * あなたの区切り線を教えて!
 *----------------------------------------
 * コメントで区切り線を書くときの
 * みなさんの記述方法の違いを知りたい。
 */
package
{
    import flash.display.Sprite;

    /**
     * OshieteSeparator は区切り線の書式を示すために用意したクラスです。
     * @author yasu
     * @see http://wonderfl.net/c/8tFO
     * @since 2010/12/09
     */
    public class OshieteSeparator extends Sprite
    {

        //----------------------------------------------------------
        //
        //   Constructor 
        //
        //----------------------------------------------------------

        /**
         * 新しい OshieteSeparator インスタンスを作成します。
         */
        public function OshieteSeparator()
        {

        }

        //----------------------------------------------------------
        //
        //   Property 
        //
        //----------------------------------------------------------

        //--------------------------------------
        // hoge 
        //--------------------------------------

        private var _hoge:String = "hogehoge";

        /**
         * hoge を取得または設定します。 
         */
        public function get hoge():String
        {
            return _hoge;
        }

        public function set hoge(value:String):void
        {
            _hoge = value;
        }

        /**
         * moja を取得または設定します。 
         */
        public var moja:String = "mojamoja";

        //----------------------------------------------------------
        //
        //   Function 
        //
        //----------------------------------------------------------

        /**
         * bar します。
         */
        public function bar():void
        {

        }

        /**
         * foo します。
         */
        private function foo():void
        {

        }
    }
}