View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.translator.itemdescriptor;
2   
3   /**
4    * An interface for all descriptor factories. Descriptor factories are provided with an ITCMsg
5    * and they return a configured corresponding ItemDescriptor.
6    * 
7    * @author Ondrej
8    */
9   public interface IDescriptorFactory <T extends ItemDescriptor> {
10  	
11      T getNewDescriptor(ItemTyped configMsg);
12      
13  }