-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO
29 lines (19 loc) · 852 Bytes
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- publish jars into maven central
- in readme: add limitations
- add other features?
- generate a bean builder
BeanBuilder bb=BeanChecker.createBeanBuilder(ExampleBean.class);
ExampleBean bean=bb.setA().setB().build();
How exactly would that work, a? The setA() method of the builder...
Maybe we can just generate the code and the user would use it,
similar to how xjc generates classes out of XML schemas.
Question: maybe some other projects already have this?
- Eclipse plugin that generates calling all setters
ExampleBean bean=new ExampleBean();
// click Eclipse -> generate setter calls
bean.setA(null); // TODO
bean.setB(null); // TODO
bean.setBoolean(false); // TODO
...
bean.setZ(null); // TODO
- generate javadoc, see the output