Public:BWmeta service/Java mapping
From YaddaWiki
(Difference between revisions)
Bolo (Talk | contribs)
(Created page with "{{Infobox BWmeta service}} == General contracts == * Every class has a public empty constructor. * Every setter and every list adder in every class returns <code>this</code>, w…")
Newer edit →
(Created page with "{{Infobox BWmeta service}} == General contracts == * Every class has a public empty constructor. * Every setter and every list adder in every class returns <code>this</code>, w…")
Newer edit →
Revision as of 09:51, 27 September 2010
Service details | |
---|---|
Name | BWmeta |
Code location (relative to SVN root) | projects/dir/bwmeta-core |
Javadoc | |
Contact person | Jakub Jurkiewicz |
General contracts
- Every class has a public empty constructor.
- Every setter and every list adder in every class returns
this
, which allows chained setting, e.g.:
new YElement() .setId("bwmeta1.element.foo") .add(new YName().setText("Foo").setLanguage(YLanguage.English)) .addDescription(new YDescription().setText("Lorem ipsum"));
- ...