/// <summary>
        /// Cleans all text fields in this element
        /// </summary>
        /// <param name="obj"></param>
        /// <param name="visitSubNodes"></param>
        public override void visit(Generated.Namable obj, bool visitSubNodes)
        {
            if ( obj.getName() != null )
              {
            obj.setName(obj.getName().Trim());
              }

              base.visit(obj, visitSubNodes);
        }
        /// <summary>
        /// Compares two Namable and annotates the differences on the first one
        /// </summary>
        /// <param name="obj"></param>
        /// <param name="other"></param>
        public static void compareNamable(Generated.Namable obj, Generated.Namable other, VersionDiff diff)
        {
            if ( other == null )
            {
                diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "", "", obj.Name ) );
                return;
            }

            if ( !CompareUtil.canonicalStringEquality(obj.getName(), other.getName()) )
            {
                diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "Name", other.getName(), obj.getName()) );
            }
        }
 /// <summary>
 /// Duplicates a source Namable into its target
 /// </summary>
 /// <param name="source"></param>
 /// <param name="target"></param>
 public static void DuplicateNamable(Generated.Namable source, Generated.Namable target)
 {
     if ( source != null && target != null )
     {
         target.setName(source.getName());
     }
 }
 /// <summary>
 /// Searches a specific string in Namable and updates the list 
 /// of model element with all the elements in which that string is found
 /// </summary>
 /// <param name="obj"></param>
 /// <param name="obj">The string to search for</param>
 /// <param name="occurences">The list of model elements which hold the searched string</param>
 public static void searchNamable(Generated.Namable obj, string searchString, List<ModelElement> occurences)
 {
     if ( obj.getName() != null && obj.getName().Contains (searchString) )
     {
         occurences.Add ( obj );
     }
 }