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

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

短めのコードなら大体こんな感じ。
Get Adobe Flash player
by a24 10 Dec 2010
    Embed
// forked from paq's あなたの区切り線を教えて!
// licence: NYSL
// licence: NYSL
/**
 * あなたの区切り線を教えて!
 *----------------------------------------
 * コメントで区切り線を書くときの
 * みなさんの記述方法の違いを知りたい。
 */
package
{
    /**
     * @author  @24
     * @version 0.0
     */
     
    import flash.display.Sprite;

    public class OshieteSeparator extends Sprite
    {
        private var _hoge:String = "hogehoge";
        public var moja:String = "mojamoja";
        
        /**
         * OshieteSeparator は区切り線の書式を示すために用意したクラスです。
         */
        public function OshieteSeparator()
        {
            
        }
         
        
        /*
         * ===============================================================================================
         * PUBLIC
         * -----------------------------------------------------------------------------------------------
         */
         
        /**
         * bar します。
         */
        public function bar():void
        {

        }
        

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

        }
        
        
        /*
         * ===============================================================================================
         * GETTER & SETTER
         * -----------------------------------------------------------------------------------------------
         */
         
        /**
         * hoge です。 
         */
        public function get hoge():String { return _hoge; }
        public function set hoge(value:String):void
        {
            _hoge = value;
        }
    }
}