15 | | * ProObject vs Java Object |
16 | | * Propertry vs Java field |
17 | | * areaComputation example |
18 | | |
19 | | [[Include(source:/trunk/sophie2-platform/modules/org.sophie2.core/src/test/java/org/sophie2/core/prolib/tutorial/AutoPropertyDemo.java)]] |
| 15 | Here we'll provide a simple comparison between ProLib code and normal Java code as well as an example. |
| 16 | |
| 17 | == ProObject & Properties vs Java Object & Java fields == |
| 18 | In Java, there are Objects and each Object has methods and fields. |
| 19 | |
| 20 | In the ProLib, there are ProObjects and each ProObject has normal Java methods and Properties instead of fields. The different concept here are that Properties are something like ''smart'' Java fields. |
| 21 | * You can create a ProObject by implementing the ProObject interface or by using the default implementation BaseProObject |
| 22 | * You can declare Properties inside the ProObject with Java methods which return a Prop<T> (later you'll get what is this), where T is a concrete class like Integer. The method executes some logic and returns the actual Property. |
| 23 | * There are different kind of Properties, so inside these methods you can provide logic which returns the desired kind of Property. |
| 24 | |
| 25 | === Example === |
| 26 | Let's look at the following example: |
| 27 | |
| 28 | {{{ |
| 29 | // Basic rectangle class which is ProObject. |
| 30 | class Rectangle extends BaseProObject { |
| 31 | // Integer property for the width of the rectangle. Analogical to an Integer Java field. |
| 32 | RwProp<Integer> width() { |
| 33 | return getBean().makeValueProp("width", Integer.class); |
| 34 | } |
| 35 | |
| 36 | // Integer property for the height of the rectangle. Analogical to an Integer Java field. |
| 37 | RwProp<Integer> height() { |
| 38 | return getBean().makeValueProp("height", Integer.class); |
| 39 | } |
| 40 | |
| 41 | // Smart property which returns the area of the rectangle. |
| 42 | Prop<Integer> area() { |
| 43 | class area extends AutoProperty<Integer> { |
| 44 | @Override |
| 45 | protected Integer compute() { |
| 46 | Integer res = width().get() * height().get(); |
| 47 | return res; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | return getBean().makeProp(area.class); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | // this is something like pseudo ProLib code which demonstrates basic ProLib usage |
| 56 | public void demoCode() { |
| 57 | // create a new Rectangle |
| 58 | Rectangle rectangle = new Rectangle(); |
| 59 | |
| 60 | // set the width to 6 |
| 61 | rectangle.width().set(6); |
| 62 | |
| 63 | // set the height to 8 |
| 64 | rectangle.height().set(8); |
| 65 | |
| 66 | // it is true then that the area is equal to 6*8 = 48 |
| 67 | assertEquals(48, (int)rectangle.area().get()); |
| 68 | } |
| 69 | }}} |
| 70 | |
| 71 | So, you can see the analogy with Java code, though the difference is with the area() Property. This is an AutoProperty: a property which is automatically computed. In the compute() method you specify the logic of the computation, and then this Property gets automatically computed. Even more, when the width and height change, this Property immediately gets recomputed and stay up-to-date which is very useful. |