183 | | |
| 183 | * Actually, AutoProperties have a '''doSet()''' method, which can be overriden to provide setting manually a value of a given AutoProperty. This can be used in ''very rare cases'' when you have an AutoProperty X which depends on other Properties but also there's an AutoProperty Y which depends on X. So let's say that we need Y to have a valid value but at this stage of execution of our program we don't have all the Properties which X depends on initialized. That's when we can manually set the value of X, so Y gets property computed, and later, when all the Properties X depends on initialize, then X gets recomputed and Y respectively.[[BR]] |
| 184 | This should be used very rarely, so if you think you need this, consult first with someone else (: |
| 185 | * There's a special case of AutoProperties which are '''const''' AutoProperties. Such AutoProperties depend on some other Properties, but their value should be computed only once. |
| 186 | For instance you can have this case: |
| 187 | {{{ |
| 188 | public Prop<Integer> X() { ... } |
| 189 | public Prop<Char> Y() { ... } |
| 190 | public Prop<String> Z() { ... } |
| 191 | |
| 192 | @Const |
| 193 | @Override |
| 194 | public Prop<JLabel> swingComponent() { |
| 195 | class swingComponent extends AutoProperty<JLabel> { |
| 196 | @Override |
| 197 | protected JLabel compute() { |
| 198 | assert getLastValue() == null; |
| 199 | |
| 200 | JLabel res = new JLabel(); |
| 201 | res.setBackground(Color.green); |
| 202 | res.setText("text is " + X().get() + ", " + Y().get() + ", " + Z().get()); |
| 203 | |
| 204 | return res; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | return getBean().makeProp(swingComponent.class); |
| 209 | } |
| 210 | }}} |
| 211 | In this case the AutoProperty swingComponent() depends on X(), Y(), Z(), provide some relatively complex initializing logic in the compute() method and you want to make sure this component is created only once. Thus: |
| 212 | * You'll be happy if you don't want to worry about when X(), Y() and Z() get initialized and this way the ProLib can do it for you, |
| 213 | * You can capsulate the initialization logic in the compute() method so your ProObject constructor doesn't get bloated with it instead, |
| 214 | * By convention you insert ''assert getLastValue() == null;'' assertion which makes sure that the Property is still not initialized by the time the compute() method is called (which means that it's value is still null). |
| 215 | * Also by convention, you annotate such AutoProperties with '''@Const'''. |