Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / SubstitutionList.cs / 1 / SubstitutionList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// Data structure for use in CloneAndReplace /// ///Isolates the many QilNode classes from changes in /// the underlying data structure. internal sealed class SubstitutionList { // private ArrayList s; public SubstitutionList() { this.s = new ArrayList(4); } ////// Add a substituion pair /// /// a node to be replaced /// its replacement public void AddSubstitutionPair(QilNode find, QilNode replace) { s.Add(find); s.Add(replace); } ////// Remove the last a substituion pair /// public void RemoveLastSubstitutionPair() { s.RemoveRange(s.Count - 2, 2); } ////// Remove the last N substitution pairs /// public void RemoveLastNSubstitutionPairs(int n) { Debug.Assert(n >= 0, "n must be nonnegative"); if (n > 0) { n *= 2; s.RemoveRange(s.Count - n, n); } } ////// Find the replacement for a node /// /// the node to replace ///null if no replacement is found public QilNode FindReplacement(QilNode n) { Debug.Assert(s.Count % 2 == 0); for (int i = s.Count-2; i >= 0; i-=2) if (s[i] == n) return (QilNode)s[i+1]; return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// Data structure for use in CloneAndReplace /// ///Isolates the many QilNode classes from changes in /// the underlying data structure. internal sealed class SubstitutionList { // private ArrayList s; public SubstitutionList() { this.s = new ArrayList(4); } ////// Add a substituion pair /// /// a node to be replaced /// its replacement public void AddSubstitutionPair(QilNode find, QilNode replace) { s.Add(find); s.Add(replace); } ////// Remove the last a substituion pair /// public void RemoveLastSubstitutionPair() { s.RemoveRange(s.Count - 2, 2); } ////// Remove the last N substitution pairs /// public void RemoveLastNSubstitutionPairs(int n) { Debug.Assert(n >= 0, "n must be nonnegative"); if (n > 0) { n *= 2; s.RemoveRange(s.Count - n, n); } } ////// Find the replacement for a node /// /// the node to replace ///null if no replacement is found public QilNode FindReplacement(QilNode n) { Debug.Assert(s.Count % 2 == 0); for (int i = s.Count-2; i >= 0; i-=2) if (s[i] == n) return (QilNode)s[i+1]; return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HandlerFactoryWrapper.cs
- AuthorizationRuleCollection.cs
- AVElementHelper.cs
- TextServicesDisplayAttributePropertyRanges.cs
- InternalControlCollection.cs
- KnownColorTable.cs
- ActivityScheduledRecord.cs
- CompilerError.cs
- LayoutDump.cs
- ChtmlTextWriter.cs
- HelpFileFileNameEditor.cs
- BindingExpression.cs
- IntSecurity.cs
- DataControlLinkButton.cs
- TextTreeObjectNode.cs
- Help.cs
- ModuleConfigurationInfo.cs
- log.cs
- Translator.cs
- TypeGenericEnumerableViewSchema.cs
- CalendarDataBindingHandler.cs
- JsonStringDataContract.cs
- BatchServiceHost.cs
- ETagAttribute.cs
- MonitoringDescriptionAttribute.cs
- SqlFileStream.cs
- UidManager.cs
- AssertHelper.cs
- DocumentOrderComparer.cs
- SpecialTypeDataContract.cs
- WinFormsSpinner.cs
- SymbolDocumentInfo.cs
- StringConcat.cs
- SystemTcpStatistics.cs
- MetadataCache.cs
- KeyValuePairs.cs
- DataFieldEditor.cs
- ToolStripDropDownButton.cs
- MatrixAnimationBase.cs
- LineGeometry.cs
- activationcontext.cs
- OdbcDataAdapter.cs
- FacetEnabledSchemaElement.cs
- ConfigurationElementCollection.cs
- PackWebRequest.cs
- BookmarkScope.cs
- SoapInteropTypes.cs
- SoapAttributes.cs
- FormsAuthenticationConfiguration.cs
- WebPartDisplayMode.cs
- SystemIPGlobalStatistics.cs
- OleDbConnectionInternal.cs
- LocalizationParserHooks.cs
- QuaternionRotation3D.cs
- PointAnimation.cs
- CustomErrorCollection.cs
- AssemblyBuilderData.cs
- EditBehavior.cs
- UpdateDelegates.Generated.cs
- HtmlCalendarAdapter.cs
- TableLayoutSettings.cs
- CharAnimationUsingKeyFrames.cs
- ControlUtil.cs
- ArcSegment.cs
- Vector3DCollectionConverter.cs
- SymbolEqualComparer.cs
- ExpressionContext.cs
- Task.cs
- WebContext.cs
- StylusPlugin.cs
- odbcmetadatafactory.cs
- VectorAnimation.cs
- SchemaImporterExtensionsSection.cs
- XslCompiledTransform.cs
- AccessorTable.cs
- HttpCachePolicy.cs
- MediaPlayerState.cs
- EncoderBestFitFallback.cs
- ProxyWebPartManagerDesigner.cs
- Point3DCollectionValueSerializer.cs
- WSDualHttpBindingCollectionElement.cs
- CleanUpVirtualizedItemEventArgs.cs
- DbParameterCollectionHelper.cs
- BooleanConverter.cs
- SqlConnectionStringBuilder.cs
- TrackBarRenderer.cs
- WebBrowserEvent.cs
- XmlDictionaryReaderQuotas.cs
- UIElementParagraph.cs
- SkewTransform.cs
- SQLCharsStorage.cs
- HostUtils.cs
- SelectionProviderWrapper.cs
- TextContainerChangedEventArgs.cs
- InkCanvasInnerCanvas.cs
- TrackingServices.cs
- HMACSHA512.cs
- InvokeGenerator.cs
- DeferredElementTreeState.cs
- MDIControlStrip.cs