CommunicationChannelState newCommChannelState = (CommunicationChannelState)super.clone();
newCommChannelState.featuresHash = new Hashtable(11);
for (Enumeration e = featuresHash.keys(); e.hasMoreElements(); )
{
String featureName = (String)e.nextElement();
Feature feature = (Feature)featuresHash.get(featureName);
newCommChannelState.featuresHash.put( featureName , feature );
}
return newCommChannelState;