Created
November 20, 2009 17:35
-
-
Save johnlindquist/239650 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This is about <code>ClassName</code>. | |
* {@link com.yourCompany.aPackage.SuperClass} | |
* @author author | |
*/ | |
package com.yourdomain | |
{ | |
class ClassName extends SuperClass | |
{ | |
public static var x:Number = 1; | |
/* This comment may span multiple lines. */ | |
private static var y:Number = 1; | |
// TODO: refactor | |
public function foo1(parameter:Number):String | |
{ | |
return "someValue"; | |
} | |
/* | |
* TODO: refactor | |
*/ | |
protected function foo2():Void | |
{ | |
var s:String = 'A'; | |
} | |
/** | |
* TODO: refactor | |
* @param parameter Some parameter | |
*/ | |
private function foo3(parameter:SuperClass):Boolean | |
{ | |
if (parameter != null) | |
{ | |
return false; | |
} | |
return true; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment