Skip to content

Instantly share code, notes, and snippets.

@johnlindquist
Created November 20, 2009 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnlindquist/239650 to your computer and use it in GitHub Desktop.
Save johnlindquist/239650 to your computer and use it in GitHub Desktop.
/**
* 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