KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > olap > model > Property


1 /*
2  * ====================================================================
3  * This software is subject to the terms of the Common Public License
4  * Agreement, available at the following URL:
5  * http://www.opensource.org/licenses/cpl.html .
6  * Copyright (C) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  *
11  *
12  */

13 package com.tonbeller.jpivot.olap.model;
14
15
16 /**
17  * Property of a Member
18  * @author av
19  */

20 public interface Property extends Visitable, Decorator, Displayable, PropertyHolder, Alignable {
21   /**
22    * @return the name of the Property
23    */

24   String JavaDoc getName();
25   
26   /**
27    * the value of the property
28    */

29   String JavaDoc getValue();
30   
31   /**
32    * if true, this property may be a nested property whose path is
33    * specified by '.' in its name.
34    */

35   boolean isNormalizable();
36 }
37
Popular Tags