Public:BWmeta service/Java mapping
From YaddaWiki
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"));
- ...