Created
November 11, 2019 14:03
-
-
Save itsmunim/54a4ead9d9d9eec3db1a3fbb9cba21e7 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
| package com.airasia.samples.codeorder; | |
| import java.awt.color.CMMException; | |
| import java.awt.color.ColorSpace; | |
| /** | |
| * A recommended approach to organize your code flow | |
| */ | |
| public class CodeSample { | |
| /* Properties */ | |
| boolean isEmpty; | |
| String name; | |
| String address; | |
| /* End - Properties */ | |
| /* Constructors */ | |
| public CodeSample() { | |
| } | |
| public CodeSample(String name) { | |
| } | |
| /* End - Constructors */ | |
| /* Public Static Methods */ | |
| public static void doWonder() { | |
| } | |
| public static void doMoreWonder() { | |
| } | |
| /* End - Public Static Methods */ | |
| /* Public Methods */ | |
| public void doSomething() { | |
| } | |
| public void pleaseDoSomething() { | |
| } | |
| /* End - Public Methods */ | |
| /* Private Methods */ | |
| private void helpToDoSomething() { | |
| } | |
| private void pleaseHelpToDoSomething() { | |
| } | |
| /* End - Private Methods */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment