1 package org.sapia.util.xml.confix; 2 3 4 /** 5 * An instance of this interface wrap an object that eventually "receives" method 6 * calls from <code>ConfixProcessorIF</code> instances. 7 * 8 * @author Yanick Duchesne 9 * 10 * <dl> 11 * <dt><b>Copyright:</b><dd>Copyright © 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt> 12 * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the 13 * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt> 14 * </dl> 15 */ 16 public interface ObjectWrapperIF { 17 /** 18 * Returns the object encapsulated by this wrapper. 19 * 20 * @return The object encapsulated by this wrapper. 21 */ 22 public Object getWrappedObject(); 23 } 24