KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > context > base > api > IMapping


1 package org.columba.core.context.base.api;
2
3 /**
4  * Map a single structure item to another structure item.
5  *
6  * @author frd
7  */

8 public interface IMapping {
9
10     public ILocator getSourceLocator();
11
12     public ILocator getDestinationLocator();
13
14     public void setSourceLocator(ILocator locator);
15
16     public void setDestinationLocator(ILocator locator);
17 }
18
Popular Tags