Skip to content

Instantly share code, notes, and snippets.

@marcelkliemannel
Last active August 21, 2020 17:04
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 marcelkliemannel/811ab31ace0b49d3a06382ee6965e67c to your computer and use it in GitHub Desktop.
Save marcelkliemannel/811ab31ace0b49d3a06382ee6965e67c to your computer and use it in GitHub Desktop.
Java Types Delimiters
public class MyClass {
// -- Fields ----------------------------------------------------------------------------------------------------- //
// -- Initialization --------------------------------------------------------------------------------------------- //
// -- Exposed Methods -------------------------------------------------------------------------------------------- //
// -- Private Methods -------------------------------------------------------------------------------------------- //
// -- Inner Type ------------------------------------------------------------------------------------------------- //
// -- End of Class ----------------------------------------------------------------------------------------------- //
}
public interface MyInterface {
// -- Fields ----------------------------------------------------------------------------------------------------- //
// -- Exposed Methods -------------------------------------------------------------------------------------------- //
// -- Private Methods -------------------------------------------------------------------------------------------- //
// -- Inner Type ------------------------------------------------------------------------------------------------- //
// -- End of Interface ------------------------------------------------------------------------------------------- //
}
public enum MyEnum {
// -- Values ----------------------------------------------------------------------------------------------------- //
// -- Fields ----------------------------------------------------------------------------------------------------- //
// -- Initialization --------------------------------------------------------------------------------------------- //
// -- Exposed Methods -------------------------------------------------------------------------------------------- //
// -- Private Methods -------------------------------------------------------------------------------------------- //
// -- Inner Type ------------------------------------------------------------------------------------------------- //
// -- End of Enum ------------------------------------------------------------------------------------------------ //
}
module MyModule {
// -- Requires --------------------------------------------------------------------------------------------------- //
// -- Exports ---------------------------------------------------------------------------------------------------- //
// -- Opens ------------------------------------------------------------------------------------------------------ //
// -- Services --------------------------------------------------------------------------------------------------- //
// -- End of Module ---------------------------------------------------------------------------------------------- //
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment