本文整理汇总了C#中Generated.allRules方法的典型用法代码示例。如果您正苦于以下问题:C# Generated.allRules方法的具体用法?C# Generated.allRules怎么用?C# Generated.allRules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Generated
的用法示例。
在下文中一共展示了Generated.allRules方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ensureGuidProcedure
/// <summary>
/// Ensures that two Procedure have matching GUID, and recursively.
/// obj is the leader for Guid. If other doesn't match obj guid,
/// 1. other does not have a guid, in that case, other should have the same guid as obj
/// 2. other already has a guid. In that case, there is a mismatch between objects, and the process stops here
/// </summary>
/// <param name="obj"></param>
/// <param name="other"></param>
public static void ensureGuidProcedure(Generated.Procedure obj, Generated.Procedure other)
{
if ( obj == null )
{
if ( other != null )
{
// Side effect, setup a GUID if needed for the other part (other)
string guid = other.Guid;
}
return;
}
if ( other == null )
{
if ( obj != null )
{
// Side effect, setup a GUID if needed for the other part (obj)
string guid = obj.Guid;
}
return;
}
if ( obj.Guid != other.getGuid() )
{
if ( string.IsNullOrEmpty(other.getGuid()) || GuidByName && (obj.Name == other.Name) )
{
// These are matching elements, copy the guid from obj
other.setGuid ( obj.Guid );
}
else
{
// Elements do not match. Stop the recursive process
return;
}
}
ensureGuidReqRelated (obj, other);
ensureGuidStateMachine ( obj.getStateMachine(), other.getStateMachine() );
if ( obj.allRules() != null )
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
bool found = false;
// Try first to assign Guid to elements which do not have a guid
// This helps handling duplicated in lists
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( CompareUtil.canonicalStringEquality(subElement.Name, otherElement.Name) && otherElement.getGuid() == null )
{
ensureGuidRule ( subElement, otherElement );
found = true;
break;
}
}
if ( !found )
{
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( CompareUtil.canonicalStringEquality(subElement.Name, otherElement.Name) )
{
ensureGuidRule ( subElement, otherElement );
found = true;
break;
}
}
}
if ( !found )
{
ensureGuidRule ( subElement, null );
}
}
foreach ( Generated.Rule otherElement in other.allRules() )
{
bool found = false;
foreach ( Generated.Rule subElement in obj.allRules() )
{
if ( CompareUtil.canonicalStringEquality(subElement.Name, otherElement.Name) )
{
found = true;
break;
}
}
if ( !found )
{
//.........这里部分代码省略.........
示例2: compareStructure
//.........这里部分代码省略.........
foreach ( Generated.StateMachine subElement in obj.allStateMachines() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
}
if ( !found )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "StateMachines", otherElement.Name) );
}
}
}
else
{
foreach ( Generated.StateMachine subElement in obj.allStateMachines() )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "StateMachines", "", subElement.Name ) );
}
}
}
else
{
if ( other.allStateMachines() != null )
{
foreach ( Generated.StateMachine otherElement in other.allStateMachines() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "StateMachines", otherElement.Name) );
}
}
}
if ( obj.allRules() != null )
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
bool compared = false;
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareRule ( subElement, otherElement, diff );
compared = true;
break;
}
}
if ( !compared )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Rules", "", subElement.Name ) );
}
}
foreach ( Generated.Rule otherElement in other.allRules() )
{
bool found = false;
foreach ( Generated.Rule subElement in obj.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
示例3: ensureGuidNameSpace
//.........这里部分代码省略.........
foreach ( Generated.Variable subElement in obj.allVariables() )
{
if ( CompareUtil.canonicalStringEquality(subElement.Name, otherElement.Name) )
{
found = true;
break;
}
}
if ( !found )
{
ensureGuidVariable ( null, otherElement );
}
}
}
else
{
foreach ( Generated.Variable subElement in obj.allVariables() )
{
ensureGuidVariable ( subElement, null );
}
}
}
else
{
if ( other.allVariables() != null )
{
foreach ( Generated.Variable otherElement in other.allVariables() )
{
ensureGuidVariable ( null, otherElement );
}
}
}
if ( obj.allRules() != null )
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
bool found = false;
// Try first to assign Guid to elements which do not have a guid
// This helps handling duplicated in lists
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( CompareUtil.canonicalStringEquality(subElement.Name, otherElement.Name) && otherElement.getGuid() == null )
{
ensureGuidRule ( subElement, otherElement );
found = true;
break;
}
}
if ( !found )
{
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( CompareUtil.canonicalStringEquality(subElement.Name, otherElement.Name) )
{
ensureGuidRule ( subElement, otherElement );
found = true;
break;
}
}
}
示例4: compareProcedure
/// <summary>
/// Compares two Procedure and annotates the differences on the first one
/// </summary>
/// <param name="obj"></param>
/// <param name="other"></param>
public static void compareProcedure(Generated.Procedure obj, Generated.Procedure other, VersionDiff diff)
{
if ( other == null )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "", "", obj.Name ) );
return;
}
compareReqRelated (obj, other, diff);
if ( obj.getStateMachine() == null )
{
if ( other.getStateMachine() != null )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "StateMachine", "" ) );
}
}
else
{
compareStateMachine ( obj.getStateMachine(), other.getStateMachine(), diff );
}
if ( obj.allRules() != null )
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
bool compared = false;
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareRule ( subElement, otherElement, diff );
compared = true;
break;
}
}
if ( !compared )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Rules", "", subElement.Name ) );
}
}
foreach ( Generated.Rule otherElement in other.allRules() )
{
bool found = false;
foreach ( Generated.Rule subElement in obj.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
}
if ( !found )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "Rules", otherElement.Name) );
}
}
}
else
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Rules", "", subElement.Name ) );
}
}
}
else
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule otherElement in other.allRules() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "Rules", otherElement.Name) );
}
}
}
if ( obj.allParameters() != null )
{
if ( other.allParameters() != null )
{
foreach ( Generated.Parameter subElement in obj.allParameters() )
{
bool compared = false;
foreach ( Generated.Parameter otherElement in other.allParameters() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareParameter ( subElement, otherElement, diff );
compared = true;
break;
}
//.........这里部分代码省略.........
示例5: compareStateMachine
/// <summary>
/// Compares two StateMachine and annotates the differences on the first one
/// </summary>
/// <param name="obj"></param>
/// <param name="other"></param>
public static void compareStateMachine(Generated.StateMachine obj, Generated.StateMachine other, VersionDiff diff)
{
if ( other == null )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "", "", obj.Name ) );
return;
}
compareType (obj, other, diff);
if ( !CompareUtil.canonicalStringEquality(obj.getInitialState(), other.getInitialState()) )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "InitialState", other.getInitialState(), obj.getInitialState()) );
}
if ( obj.allStates() != null )
{
if ( other.allStates() != null )
{
foreach ( Generated.State subElement in obj.allStates() )
{
bool compared = false;
foreach ( Generated.State otherElement in other.allStates() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareState ( subElement, otherElement, diff );
compared = true;
break;
}
}
if ( !compared )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "States", "", subElement.Name ) );
}
}
foreach ( Generated.State otherElement in other.allStates() )
{
bool found = false;
foreach ( Generated.State subElement in obj.allStates() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
}
if ( !found )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "States", otherElement.Name) );
}
}
}
else
{
foreach ( Generated.State subElement in obj.allStates() )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "States", "", subElement.Name ) );
}
}
}
else
{
if ( other.allStates() != null )
{
foreach ( Generated.State otherElement in other.allStates() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "States", otherElement.Name) );
}
}
}
if ( obj.allRules() != null )
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
bool compared = false;
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareRule ( subElement, otherElement, diff );
compared = true;
break;
}
}
if ( !compared )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Rules", "", subElement.Name ) );
}
}
//.........这里部分代码省略.........
示例6: compareNameSpace
//.........这里部分代码省略.........
foreach ( Generated.Variable otherElement in other.allVariables() )
{
bool found = false;
foreach ( Generated.Variable subElement in obj.allVariables() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
}
if ( !found )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "Variables", otherElement.Name) );
}
}
}
else
{
foreach ( Generated.Variable subElement in obj.allVariables() )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Variables", "", subElement.Name ) );
}
}
}
else
{
if ( other.allVariables() != null )
{
foreach ( Generated.Variable otherElement in other.allVariables() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "Variables", otherElement.Name) );
}
}
}
if ( obj.allRules() != null )
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
bool compared = false;
foreach ( Generated.Rule otherElement in other.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
compareRule ( subElement, otherElement, diff );
compared = true;
break;
}
}
if ( !compared )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Rules", "", subElement.Name ) );
}
}
foreach ( Generated.Rule otherElement in other.allRules() )
{
bool found = false;
foreach ( Generated.Rule subElement in obj.allRules() )
{
if ( subElement.Guid == otherElement.Guid )
{
found = true;
break;
}
}
if ( !found )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "Rules", otherElement.Name) );
}
}
}
else
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
diff.appendChanges ( new Diff(subElement, HistoricalData.Generated.acceptor.ChangeOperationEnum.aAdd, "Rules", "", subElement.Name ) );
}
}
}
else
{
if ( other.allRules() != null )
{
foreach ( Generated.Rule otherElement in other.allRules() )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aRemove , "Rules", otherElement.Name) );
}
}
}
if ( !CompareUtil.canonicalStringEquality(obj.getComment(), other.getComment()) )
{
diff.appendChanges ( new Diff(obj, HistoricalData.Generated.acceptor.ChangeOperationEnum.aChange, "Comment", other.getComment(), obj.getComment()) );
}
}
示例7: searchStructure
/// <summary>
/// Searches a specific string in Structure 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 searchStructure(Generated.Structure obj, string searchString, List<ModelElement> occurences)
{
searchType (obj, searchString, occurences);
if ( obj.allElements() != null )
{
foreach ( Generated.StructureElement subElement in obj.allElements() )
{
searchStructureElement ( subElement, searchString, occurences );
}
}
if ( obj.allProcedures() != null )
{
foreach ( Generated.Procedure subElement in obj.allProcedures() )
{
searchProcedure ( subElement, searchString, occurences );
}
}
if ( obj.allStateMachines() != null )
{
foreach ( Generated.StateMachine subElement in obj.allStateMachines() )
{
searchStateMachine ( subElement, searchString, occurences );
}
}
if ( obj.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
searchRule ( subElement, searchString, occurences );
}
}
if ( obj.allInterfaces() != null )
{
foreach ( Generated.StructureRef subElement in obj.allInterfaces() )
{
searchStructureRef ( subElement, searchString, occurences );
}
}
}
示例8: searchStateMachine
/// <summary>
/// Searches a specific string in StateMachine 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 searchStateMachine(Generated.StateMachine obj, string searchString, List<ModelElement> occurences)
{
searchType (obj, searchString, occurences);
if ( obj.getInitialState() != null && obj.getInitialState().Contains (searchString) )
{
occurences.Add ( obj );
}
if ( obj.allStates() != null )
{
foreach ( Generated.State subElement in obj.allStates() )
{
searchState ( subElement, searchString, occurences );
}
}
if ( obj.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
searchRule ( subElement, searchString, occurences );
}
}
}
示例9: searchProcedure
/// <summary>
/// Searches a specific string in Procedure 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 searchProcedure(Generated.Procedure obj, string searchString, List<ModelElement> occurences)
{
searchReqRelated (obj, searchString, occurences);
if ( obj.getStateMachine() != null )
{
searchStateMachine ( obj.getStateMachine(), searchString, occurences );
}
if ( obj.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
searchRule ( subElement, searchString, occurences );
}
}
if ( obj.allParameters() != null )
{
foreach ( Generated.Parameter subElement in obj.allParameters() )
{
searchParameter ( subElement, searchString, occurences );
}
}
}
示例10: searchNameSpace
/// <summary>
/// Searches a specific string in NameSpace 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 searchNameSpace(Generated.NameSpace obj, string searchString, List<ModelElement> occurences)
{
searchNamable (obj, searchString, occurences);
if ( obj.allNameSpaces() != null )
{
foreach ( Generated.NameSpace subElement in obj.allNameSpaces() )
{
searchNameSpace ( subElement, searchString, occurences );
}
}
if ( obj.allNameSpaceRefs() != null )
{
foreach ( Generated.NameSpaceRef subElement in obj.allNameSpaceRefs() )
{
searchNameSpaceRef ( subElement, searchString, occurences );
}
}
if ( obj.allRanges() != null )
{
foreach ( Generated.Range subElement in obj.allRanges() )
{
searchRange ( subElement, searchString, occurences );
}
}
if ( obj.allEnumerations() != null )
{
foreach ( Generated.Enum subElement in obj.allEnumerations() )
{
searchEnum ( subElement, searchString, occurences );
}
}
if ( obj.allStructures() != null )
{
foreach ( Generated.Structure subElement in obj.allStructures() )
{
searchStructure ( subElement, searchString, occurences );
}
}
if ( obj.allCollections() != null )
{
foreach ( Generated.Collection subElement in obj.allCollections() )
{
searchCollection ( subElement, searchString, occurences );
}
}
if ( obj.allStateMachines() != null )
{
foreach ( Generated.StateMachine subElement in obj.allStateMachines() )
{
searchStateMachine ( subElement, searchString, occurences );
}
}
if ( obj.allFunctions() != null )
{
foreach ( Generated.Function subElement in obj.allFunctions() )
{
searchFunction ( subElement, searchString, occurences );
}
}
if ( obj.allProcedures() != null )
{
foreach ( Generated.Procedure subElement in obj.allProcedures() )
{
searchProcedure ( subElement, searchString, occurences );
}
}
if ( obj.allVariables() != null )
{
foreach ( Generated.Variable subElement in obj.allVariables() )
{
searchVariable ( subElement, searchString, occurences );
}
}
if ( obj.allRules() != null )
{
foreach ( Generated.Rule subElement in obj.allRules() )
{
searchRule ( subElement, searchString, occurences );
}
}
if ( obj.getComment() != null && obj.getComment().Contains (searchString) )
{
occurences.Add ( obj );
}
}