1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of object that have read value.
5 * See {@link GB_ValueOwnerSet} to abstraction with setter method.
6 *
7 * @author Gregory Borelli
8 */
9 public interface GB_ValueOwner
10 {
11 /***
12 * Get the value.
13 *
14 * @return Object
15 */
16 Object getValue();
17
18 }