Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Base / Core / OrderToken.cs / 1305376 / OrderToken.cs
namespace System.Activities.Presentation { using System; using System.Collections.Generic; using System.Text; using System.Activities.Presentation; ////// OrderToken is a generic class used to identify the sort /// order of hierarchical items. OrderTokens can be used /// to define priority that is based on some predefined defaults or /// based on other OrderTokens. /// abstract class OrderToken : IComparable{ private readonly OrderToken _reference; private readonly OrderTokenPrecedence _precedence; private readonly OrderTokenConflictResolution _conflictResolution; private readonly int _depth; private readonly int _index; private int _nextChildIndex; /// /// Creates a new OrderToken instance based on the specified /// referenced OrderToken, precedence, and conflict resolution /// semantics. /// /// Precedence of this token based on the /// referenced token. /// Referenced token. May be null for the /// root token case (token that's not dependent on anything else). /// Conflict resolution semantics. /// Winning ConflictResultion semantic should only be used /// on predefined, default OrderToken instances to ensure /// their correct placement in more complex chain of order /// dependencies. protected OrderToken( OrderTokenPrecedence precedence, OrderToken reference, OrderTokenConflictResolution conflictResolution) { if (!EnumValidator.IsValid(precedence)) throw FxTrace.Exception.AsError(new ArgumentOutOfRangeException("precedence")); if (!EnumValidator.IsValid(conflictResolution)) throw FxTrace.Exception.AsError(new ArgumentOutOfRangeException("conflictResolution")); _reference = reference; _precedence = precedence; _conflictResolution = conflictResolution; _depth = reference == null ? 0 : reference._depth + 1; _index = reference == null ? -1 : reference._nextChildIndex++; } ////// Compares this order token with the specified order token. /// The comparsion for OrderTokens that don't belong to the same /// chain of OrderTokens will be resolved non-deterministically. /// /// The token to compare this token to. ///0 when the tokens have an equal order priority, /// -1 if this order comes before the specified order, /// 1 otherwise. ///When other is null public virtual int CompareTo(OrderToken other) { if (other == null) throw FxTrace.Exception.ArgumentNull("other"); if (other == this) return 0; OrderToken thisOrder = this; // Find a common parent while (thisOrder._reference != other._reference) { if (thisOrder._depth == other._depth) { thisOrder = thisOrder._reference; other = other._reference; } else{ if (thisOrder._depth > other._depth) { if (thisOrder._reference == other) return thisOrder._precedence == OrderTokenPrecedence.After ? 1 : -1; thisOrder = thisOrder._reference; } else { if (other._reference == thisOrder) return other._precedence == OrderTokenPrecedence.After ? -1 : 1; other = other._reference; } } } // One order "before", one order "after"? Easy, return the // "before" order. if (thisOrder._precedence != other._precedence) return thisOrder._precedence == OrderTokenPrecedence.Before ? -1 : 1; // Both orders "before" the parent? Roots win, otherwise call ResolveConflict(). if (thisOrder._precedence == OrderTokenPrecedence.Before) { if (thisOrder._conflictResolution == OrderTokenConflictResolution.Win) return -1; else if (other._conflictResolution == OrderTokenConflictResolution.Win) return 1; return ResolveConflict(thisOrder, other); } // Both orders "after" the parent? Roots win, otherwise call ResolveConflict(). if (thisOrder._conflictResolution == OrderTokenConflictResolution.Win) return 1; else if (other._conflictResolution == OrderTokenConflictResolution.Win) return -1; return ResolveConflict(thisOrder, other); } ////// This method is called by CompareTo()'s default implementation when two OrderTokens /// appear to be equivalent. The base functionality of this method uses the instantiation /// order of the two tokens as a tie-breaker. Override this method to /// implement custom algorithms. Note that if this method ever returns 0 /// (indicating that the two tokens are equivalent) and if these tokens /// belong to a list that gets sorted multiple times, the relative order in /// which they appear in the list will not be guaranteed. This side-effect /// may or may not be a problem depending on the application. /// /// Left OrderToken /// Right OrderToken ///0, if the two are equal, -1, if left comes before right, /// 1 otherwise. protected virtual int ResolveConflict(OrderToken left, OrderToken right) { return left._index.CompareTo(right._index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DatagridviewDisplayedBandsData.cs
- BatchParser.cs
- CatalogPartChrome.cs
- RuntimeWrappedException.cs
- ReadOnlyDataSourceView.cs
- SrgsDocumentParser.cs
- CancellationHandler.cs
- XmlILTrace.cs
- TouchDevice.cs
- QilReplaceVisitor.cs
- CodeActivityMetadata.cs
- ProcessModuleDesigner.cs
- ToolStripRendererSwitcher.cs
- XmlImplementation.cs
- TableItemPattern.cs
- CatalogZoneBase.cs
- CoreSwitches.cs
- isolationinterop.cs
- SizeLimitedCache.cs
- ResponseStream.cs
- StoragePropertyMapping.cs
- AppModelKnownContentFactory.cs
- ValidatorCollection.cs
- PrimitiveType.cs
- DataColumnMapping.cs
- dbdatarecord.cs
- TextSimpleMarkerProperties.cs
- TableLayout.cs
- IDataContractSurrogate.cs
- ImportContext.cs
- SecurityVerifiedMessage.cs
- WebProxyScriptElement.cs
- TableCellCollection.cs
- GlyphElement.cs
- Keyboard.cs
- RecognizerBase.cs
- Activator.cs
- HttpListenerContext.cs
- ApplyTemplatesAction.cs
- BasicCellRelation.cs
- DataGridRow.cs
- QueryableDataSourceHelper.cs
- CryptoApi.cs
- WebProxyScriptElement.cs
- DummyDataSource.cs
- SystemFonts.cs
- LightweightEntityWrapper.cs
- DtdParser.cs
- XmlNode.cs
- EntitySqlException.cs
- FrugalMap.cs
- _NativeSSPI.cs
- DataGridViewCellValueEventArgs.cs
- DtdParser.cs
- ObjectConverter.cs
- Automation.cs
- FastEncoderStatics.cs
- EntityReference.cs
- ReversePositionQuery.cs
- Matrix3DStack.cs
- metadatamappinghashervisitor.cs
- DataServices.cs
- ListBindingConverter.cs
- ErrorTableItemStyle.cs
- TimeSpanValidator.cs
- HtmlHead.cs
- XamlFxTrace.cs
- TreeNodeStyleCollection.cs
- Delegate.cs
- BidOverLoads.cs
- XmlCharacterData.cs
- ZoneLinkButton.cs
- HttpResponse.cs
- DataViewManager.cs
- SecureUICommand.cs
- TempFiles.cs
- UserUseLicenseDictionaryLoader.cs
- MenuItemCollection.cs
- LabelInfo.cs
- DataSetUtil.cs
- XmlTextReader.cs
- UserControlAutomationPeer.cs
- HttpDebugHandler.cs
- TypeResolver.cs
- AssemblyLoader.cs
- WebBrowserUriTypeConverter.cs
- SkinBuilder.cs
- InternalCache.cs
- CodeTypeReference.cs
- DragAssistanceManager.cs
- StructuralType.cs
- EdmToObjectNamespaceMap.cs
- UserUseLicenseDictionaryLoader.cs
- FocusManager.cs
- SimpleBitVector32.cs
- PeerResolverElement.cs
- SelectionRange.cs
- PersonalizationState.cs
- SqlDataReader.cs
- UserNameSecurityTokenAuthenticator.cs