本文整理汇总了C#中Generated.getName方法的典型用法代码示例。如果您正苦于以下问题:C# Generated.getName方法的具体用法?C# Generated.getName怎么用?C# Generated.getName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Generated
的用法示例。
在下文中一共展示了Generated.getName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: visit
/// <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);
}
示例2: compareNamable
/// <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()) );
}
}
示例3: DuplicateNamable
/// <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());
}
}
示例4: searchNamable
/// <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 );
}
}