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 * container for name/value pairs. 17 * 18 * @author av 19 */ 20 21 public interface PropertyHolder { 22 23 /** 24 * get all properties of this member 25 */ 26 Property[] getProperties(); 27 28 /** 29 * get a specific property of this member 30 */ 31 Property getProperty(String name); 32 } 33