Skip to content

Instantly share code, notes, and snippets.

@marantz
Last active August 29, 2015 13:58
Show Gist options
  • Save marantz/10019454 to your computer and use it in GitHub Desktop.
Save marantz/10019454 to your computer and use it in GitHub Desktop.
/******************************************************************************
* Copyright ⓒ [Anonymous Company] All rights reserved.
******************************************************************************/
/********************************H i s t o r y*********************************
* Day Version Name Note
* 20XX.XX.XX 1.0.0 XXXXXX Create Class
******************************************************************************/
/**
* @logicalName XXXXX
* @description XXXXX
* @version 1.0.0
* @author XXXXX
*/
public class SomeClass {
/**
* @logicalName
* @version 1.0.0
* @description
* @condition
* @notice
* @see
* @example
* @spec
* @param
* @return
*/
public String someMethod(String input) throws Exception{
// Parameter Get
String output = input; // Return String
try {
// TODO : Methods Logic
} catch (Exception e) {
// TODO : Excetption Process
}
// Return output
return output;
} // END OF someMethod
} // END OF CLASS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment