KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > content > PropertiesInterface


1 package org.jahia.content;
2
3 import java.util.Properties JavaDoc;
4
5 /**
6  * <p>Title: Interface that defines access to properties. </p>
7  * <p>Description: </p>
8  * <p>Copyright: Copyright (c) 2002</p>
9  * <p>Company: Jahia Ltd</p>
10  * @author Serge Huber
11  * @version 1.0
12  */

13
14 public interface PropertiesInterface {
15
16     /**
17      * @return the full set of properties
18      */

19     public Properties JavaDoc getProperties();
20
21     /**
22      * Sets the full set of properties
23      * @param newProperties the object containing the new properties to use
24      */

25     public void setProperties(Properties JavaDoc newProperties);
26
27 }
Popular Tags