parent
bf01f3e68b
commit
58e3fbfc6a
2
transaction-script/.gitignore
vendored
Normal file
2
transaction-script/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/target/
|
||||
.idea/
|
@ -0,0 +1,49 @@
|
||||
--- # this is so called 'Yaml Front Matter', read up on it here: http://jekyllrb.com/docs/frontmatter/
|
||||
layout: pattern # layout must always be pattern
|
||||
title: Best Pattern Ever # the properly formatted title
|
||||
folder: best-pattern-ever # the folder name in which this pattern lies
|
||||
permalink: /patterns/best-pattern-ever/ # the permalink to the pattern, to keep this uniform please stick to /patterns/FOLDER/
|
||||
description: # short meta description that shows in Google search results
|
||||
|
||||
# both categories and tags are Yaml Lists
|
||||
# you can either just pick one or write a list with '-'s
|
||||
# usable categories and tags are listed here: https://github.com/iluwatar/java-design-patterns/blob/gh-pages/_config.yml
|
||||
categories: creational # categories of the pattern
|
||||
tags: # tags of the pattern
|
||||
- best
|
||||
- ever
|
||||
- awesome
|
||||
---
|
||||
|
||||
## Name / classification
|
||||
...
|
||||
|
||||
## Also known as
|
||||
...
|
||||
|
||||
## Intent
|
||||
...
|
||||
|
||||
## Explanation
|
||||
...
|
||||
|
||||
## Class diagram
|
||||
...
|
||||
|
||||
## Applicability
|
||||
...
|
||||
|
||||
## Tutorials
|
||||
...
|
||||
|
||||
## Known uses
|
||||
...
|
||||
|
||||
## Consequences (the good and the bad, add criticism here)
|
||||
...
|
||||
|
||||
## Related patterns
|
||||
...
|
||||
|
||||
## Credits
|
||||
...
|
@ -0,0 +1,8 @@
|
||||
package com.ashishtrivedi16.transactionscript;
|
||||
|
||||
public class App {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello, world!");
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user