11<!DOCTYPE html>
22< html >
3- < head >
3+ < head >
44 < meta charset ='utf-8 '>
55 < meta http-equiv ="X-UA-Compatible " content ="chrome=1 ">
66 < meta name ="viewport " content ="width=640 ">
1313 < script type ="text/javascript " src ="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js "> </ script >
1414 < script type ="text/javascript " src ="javascripts/headsmart.min.js "> </ script >
1515 < script type ="text/javascript ">
16- $ ( document ) . ready ( function ( ) {
17- $ ( '#main_content' ) . headsmart ( )
18- } )
16+ $ ( document ) . ready ( function ( ) {
17+ $ ( '#main_content' ) . headsmart ( )
18+ } )
1919 </ script >
2020 < title > jFairy - Java fake data generator</ title >
21- </ head >
21+ </ head >
2222
23- < body >
24- < a id ="forkme_banner " href ="https://github.com/SkillPanel/jfairy "> View on GitHub</ a >
25- < div class ="shell ">
23+ < body >
24+ < a id ="forkme_banner " href ="https://github.com/SkillPanel/jfairy "> View on GitHub</ a >
25+ < div class ="shell ">
2626
27- < header >
27+ < header >
2828 < span class ="ribbon-outer ">
2929 < span class ="ribbon-inner ">
3030 < h1 > jFairy</ h1 >
@@ -33,36 +33,53 @@ <h2>Java fake data generator</h2>
3333 < span class ="left-tail "> </ span >
3434 < span class ="right-tail "> </ span >
3535 </ span >
36- </ header >
36+ </ header >
3737
38- < section id ="downloads ">
38+ < section id ="downloads ">
3939 < span class ="inner ">
40- < a href ="https://github.com/SkillPanel/jfairy/zipball/master " class ="zip "> < em > download</ em > .ZIP</ a > < a href ="https://github.com/SkillPanel/jfairy/tarball/master " class ="tgz "> < em > download</ em > .TGZ</ a >
40+ < a href ="https://github.com/SkillPanel/jfairy/zipball/master " class ="zip "> < em > download</ em > .ZIP</ a >
41+ < a href ="https://github.com/SkillPanel/jfairy/tarball/master " class ="tgz "> < em > download</ em > .TGZ</ a >
4142 </ span >
42- </ section >
43+ </ section >
4344
44- < span class ="banner-fix "> </ span >
45+ < span class ="banner-fix "> </ span >
4546
46- < section id ="main_content ">
47- < h1 > < a id ="jfairy " class ="anchor " href ="#jfairy " aria-hidden ="true "> < span class ="octicon octicon-link "> </ span > </ a > jFairy</ h1 >
47+ < section id ="main_content ">
48+ < h1 > < a id ="jfairy " class ="anchor " href ="#jfairy " aria-hidden ="true "> < span
49+ class ="octicon octicon-link "> </ span > </ a > jFairy</ h1 >
4850
49- < p >
50- < a href ="https://github.com/SkillPanel/jfairy/actions/workflows/build.yml "> < img src ="https://github.com/SkillPanel/jfairy/actions/workflows/build.yml/badge.svg " alt ="Build "> </ a >
51- < a href ="https://central.sonatype.com/artifact/com.devskiller/jfairy "> < img src ="https://img.shields.io/maven-central/v/com.devskiller/jfairy " alt ="Maven Central "> </ a >
52- < a href ="https://javadoc.io/doc/com.devskiller/jfairy "> < img src ="https://javadoc.io/badge2/com.devskiller/jfairy/javadoc.svg " alt ="Javadocs "> </ a >
53- </ p >
51+ < p >
52+ < a href ="https://github.com/SkillPanel/jfairy/actions/workflows/build.yml "> < img
53+ src ="https://github.com/SkillPanel/jfairy/actions/workflows/build.yml/badge.svg " alt ="Build "> </ a >
54+ < a href ="https://central.sonatype.com/artifact/com.devskiller/jfairy "> < img
55+ src ="https://img.shields.io/maven-central/v/com.devskiller/jfairy " alt ="Maven Central "> </ a >
56+ < a href ="https://javadoc.io/doc/com.devskiller/jfairy "> < img
57+ src ="https://javadoc.io/badge2/com.devskiller/jfairy/javadoc.svg " alt ="Javadocs "> </ a >
58+ </ p >
5459
55- < p > Java fake data generator. Based on Wikipedia:</ p >
60+ < p > Java fake data generator. According to Wikipedia:</ p >
5661
57- < blockquote >
58- < p > Fairyland, in folklore, is the fabulous land or abode of fairies or fays.</ p >
59- </ blockquote >
62+ < blockquote >
63+ < p > Fairyland, in folklore, is the fabulous land or abode of fairies or fays.</ p >
64+ </ blockquote >
6065
61- < h2 > < a id ="usage " class ="anchor " href ="#usage " aria-hidden ="true "> < span class ="octicon octicon-link "> </ span > </ a > Usage</ h2 >
66+ < h2 > < a id ="installation " class ="anchor " href ="#installation " aria-hidden ="true "> < span
67+ class ="octicon octicon-link "> </ span > </ a > Installation</ h2 >
6268
63- < p > Creating simple objects :</ p >
69+ < p > Add the following dependency to your < code > pom.xml </ code > :</ p >
6470
65- < pre > < code > Fairy fairy = Fairy.create();
71+ < pre > < code > <dependency>
72+ <groupId>com.devskiller</groupId>
73+ <artifactId>jfairy</artifactId>
74+ <version>x.y.z</version>
75+ </dependency></ code > </ pre >
76+
77+ < h2 > < a id ="usage " class ="anchor " href ="#usage " aria-hidden ="true "> < span class ="octicon octicon-link "> </ span > </ a > Usage
78+ </ h2 >
79+
80+ < p > Creating simple objects:</ p >
81+
82+ < pre > < code > Fairy fairy = Fairy.create();
6683Person person = fairy.person();
6784
6885System.out.println(person.getFullName()); // Chloe Barker
@@ -75,9 +92,9 @@ <h2><a id="usage" class="anchor" href="#usage" aria-hidden="true"><span class="o
7592System.out.println(adultMale.getDateOfBirth()); // at least 21 years earlier
7693</ code > </ pre >
7794
78- < p > Creating related objects:</ p >
95+ < p > Creating related objects:</ p >
7996
80- < pre > < code > Fairy fairy = Fairy.create();
97+ < pre > < code > Fairy fairy = Fairy.create();
8198Company company = fairy.company();
8299System.out.println(company.getName()); // Robuten Associates
83100System.out.println(company.getUrl()); // http://www.robuteniaassociates.com
@@ -87,29 +104,46 @@ <h2><a id="usage" class="anchor" href="#usage" aria-hidden="true"><span class="o
87104System.out.println(salesman.getCompanyEmail()); // juan.camacho@robuteniaassociates.com
88105</ code > </ pre >
89106
90- < h2 > < a id ="locales " class ="anchor " href ="#locales " aria-hidden ="true "> < span class ="octicon octicon-link "> </ span > </ a > Supported locales</ h2 >
91-
92- < p style ="font-size: 1.4em; letter-spacing: 0.3em "> 🇬🇧 🇵🇱 🇩🇪 🇫🇷 🇪🇸 🇸🇪 🇨🇳 🇬🇪 🇮🇹 🇧🇷 🇸🇰</ p >
93-
94- < pre > < code > Fairy plFairy = Fairy.create(Locale.forLanguageTag("pl"));
107+ < h2 > < a id ="locales " class ="anchor " href ="#locales " aria-hidden ="true "> < span class ="octicon octicon-link "> </ span > </ a > Supported
108+ locales</ h2 >
109+
110+ < p style ="font-size: 1.4em; letter-spacing: 0.3em; text-align: center ">
111+ < span title ="Polish (pl) "> 🇵🇱</ span >
112+ < span title ="English (en) "> 🇬🇧</ span >
113+ < span title ="Brazilian Portuguese (br) "> 🇧🇷</ span >
114+ < span title ="Chinese (zh) "> 🇨🇳</ span >
115+ < span title ="French (fr) "> 🇫🇷</ span >
116+ < span title ="Georgian (ka) "> 🇬🇪</ span >
117+ </ p >
118+ < p style ="font-size: 1.4em; letter-spacing: 0.3em; text-align: center ">
119+ < span title ="German (de) "> 🇩🇪</ span >
120+ < span title ="Italian (it) "> 🇮🇹</ span >
121+ < span title ="Slovak (sk) "> 🇸🇰</ span >
122+ < span title ="Spanish (es) "> 🇪🇸</ span >
123+ < span title ="Swedish (sv) "> 🇸🇪</ span >
124+ < span title ="Turkish (tr) "> 🇹🇷</ span >
125+ </ p >
126+
127+ < pre > < code > Fairy plFairy = Fairy.create(Locale.forLanguageTag("pl"));
95128Fairy brFairy = Fairy.create(Locale.forLanguageTag("br"));
96129</ code > </ pre >
97130
98- </ section >
131+ </ section >
99132
100- < footer >
133+ < footer >
101134 < span class ="ribbon-outer ">
102135 < span class ="ribbon-inner ">
103- < p > this project by < a href ="https://github.com/SkillPanel "> SkillPanel</ a > can be found on < a href ="https://github.com/SkillPanel/jfairy "> GitHub</ a > </ p >
136+ < p > this project by < a href ="https://github.com/SkillPanel "> SkillPanel</ a > can be found on < a
137+ href ="https://github.com/SkillPanel/jfairy "> GitHub</ a > </ p >
104138 </ span >
105139 < span class ="left-tail "> </ span >
106140 < span class ="right-tail "> </ span >
107141 </ span >
108142 < p > Generated with < a href ="https://pages.github.com "> GitHub Pages</ a > using Merlot</ p >
109143 < span class ="octocat "> </ span >
110- </ footer >
144+ </ footer >
111145
112- </ div >
146+ </ div >
113147
114- </ body >
148+ </ body >
115149</ html >
0 commit comments