本文整理汇总了C#中Generated.getDefaultValue方法的典型用法代码示例。如果您正苦于以下问题:C# Generated.getDefaultValue方法的具体用法?C# Generated.getDefaultValue怎么用?C# Generated.getDefaultValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Generated
的用法示例。
在下文中一共展示了Generated.getDefaultValue方法的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.Variable obj, bool visitSubNodes)
{
if ( obj.getTypeName() != null )
{
obj.setTypeName(obj.getTypeName().Trim());
}
if ( obj.getDefaultValue() != null )
{
obj.setDefaultValue(obj.getDefaultValue().Trim());
}
base.visit(obj, visitSubNodes);
}
示例2: compareVariable
/// <summary>
/// Compares two Variable and annotates the differences on the first one
/// </summary>
/// <param name="obj"></param>
/// <param name="other"></param>
public static void compareVariable(Generated.Variable obj, Generated.Variable other, VersionDiff diff)
{
if ( other == null )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "", "", obj.Name ) );
return;
}
compareReqRelated (obj, other, diff);
if ( !CompareUtil.canonicalStringEquality(obj.getTypeName(), other.getTypeName()) )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "TypeName", other.getTypeName(), obj.getTypeName()) );
}
if ( !CompareUtil.canonicalStringEquality(obj.getDefaultValue(), other.getDefaultValue()) )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "DefaultValue", other.getDefaultValue(), obj.getDefaultValue()) );
}
if ( obj.getVariableMode() != other.getVariableMode() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "VariableMode", other.getVariableMode().ToString(), obj.getVariableMode().ToString()) );
}
if ( obj.allSubVariables() != null )
{
if ( other.allSubVariables() != null )
{
foreach ( Generated.Variable subElement in obj.allSubVariables() )
{
bool compared = false;
foreach ( Generated.Variable otherElement in other.allSubVariables() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareVariable ( subElement, otherElement, diff );
compared = true;
break;
}
}
if ( !compared )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "SubVariables", "", subElement.Name ) );
}
}
foreach ( Generated.Variable otherElement in other.allSubVariables() )
{
bool found = false;
foreach ( Generated.Variable subElement in obj.allSubVariables() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
}
if ( !found )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "SubVariables", otherElement.Name) );
}
}
}
else
{
foreach ( Generated.Variable subElement in obj.allSubVariables() )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "SubVariables", "", subElement.Name ) );
}
}
}
else
{
if ( other.allSubVariables() != null )
{
foreach ( Generated.Variable otherElement in other.allSubVariables() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "SubVariables", otherElement.Name) );
}
}
}
if ( obj.getWidth() != other.getWidth() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "Width", other.getWidth().ToString(), obj.getWidth().ToString()) );
}
if ( obj.getHeight() != other.getHeight() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "Height", other.getHeight().ToString(), obj.getHeight().ToString()) );
}
if ( obj.getX() != other.getX() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "X", other.getX().ToString(), obj.getX().ToString()) );
}
if ( obj.getY() != other.getY() )
{
//.........这里部分代码省略.........
示例3: DuplicateVariable
/// <summary>
/// Duplicates a source Variable into its target
/// </summary>
/// <param name="source"></param>
/// <param name="target"></param>
public static void DuplicateVariable(Generated.Variable source, Generated.Variable target)
{
if ( source != null && target != null )
{
DuplicateReqRelated (source, target);
target.setTypeName(source.getTypeName());
target.setDefaultValue(source.getDefaultValue());
target.setVariableMode(source.getVariableMode());
target.setWidth(source.getWidth());
target.setHeight(source.getHeight());
target.setX(source.getX());
target.setY(source.getY());
target.setHidden(source.getHidden());
target.setPinned(source.getPinned());
}
}
示例4: searchVariable
/// <summary>
/// Searches a specific string in Variable 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 searchVariable(Generated.Variable obj, string searchString, List<ModelElement> occurences)
{
searchReqRelated (obj, searchString, occurences);
if ( obj.getTypeName() != null && obj.getTypeName().Contains (searchString) )
{
occurences.Add ( obj );
}
if ( obj.getDefaultValue() != null && obj.getDefaultValue().Contains (searchString) )
{
occurences.Add ( obj );
}
if ( obj.allSubVariables() != null )
{
foreach ( Generated.Variable subElement in obj.allSubVariables() )
{
searchVariable ( subElement, searchString, occurences );
}
}
}