Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- Instrumentation.cs
- Point3DConverter.cs
- DisableDpiAwarenessAttribute.cs
- InitializerFacet.cs
- FontSource.cs
- XmlTextAttribute.cs
- HtmlInputText.cs
- InheritablePropertyChangeInfo.cs
- ReturnEventArgs.cs
- ScriptRef.cs
- OciHandle.cs
- Timer.cs
- SimpleApplicationHost.cs
- OleDbStruct.cs
- ConsoleCancelEventArgs.cs
- BitmapEffectrendercontext.cs
- ObjectListComponentEditor.cs
- StyleXamlTreeBuilder.cs
- StatusBarDesigner.cs
- DtrList.cs
- entitydatasourceentitysetnameconverter.cs
- BevelBitmapEffect.cs
- PageThemeParser.cs
- CodeIterationStatement.cs
- HashHelpers.cs
- EdmComplexTypeAttribute.cs
- StringFunctions.cs
- SQLResource.cs
- TagMapInfo.cs
- VisualBrush.cs
- MimeBasePart.cs
- Convert.cs
- ToolStripDropDownMenu.cs
- SplitterEvent.cs
- InfiniteIntConverter.cs
- HelpEvent.cs
- _UncName.cs
- User.cs
- XslNumber.cs
- MaskPropertyEditor.cs
- ConfigXmlDocument.cs
- TypedRowGenerator.cs
- DataGridRowDetailsEventArgs.cs
- ReturnValue.cs
- UniqueIdentifierService.cs
- ScriptBehaviorDescriptor.cs
- XmlSchemaSequence.cs
- metadatamappinghashervisitor.cs
- PropertyGrid.cs
- DeferredTextReference.cs
- Sql8ConformanceChecker.cs
- ListItemConverter.cs
- PageCodeDomTreeGenerator.cs
- BigInt.cs
- CalendarKeyboardHelper.cs
- DataMemberAttribute.cs
- webeventbuffer.cs
- ComponentChangingEvent.cs
- DataGridCommandEventArgs.cs
- DataGridLength.cs
- CodeTypeOfExpression.cs
- glyphs.cs
- BasicBrowserDialog.cs
- ExtensionQuery.cs
- BaseValidator.cs
- LayoutTable.cs
- BaseDataBoundControl.cs
- SQLMoney.cs
- XmlDictionaryWriter.cs
- OutputCacheModule.cs
- ProgressPage.cs
- SqlParameterizer.cs
- MethodBuilder.cs
- Condition.cs
- ProxyAttribute.cs
- SqlBuilder.cs
- InvalidWMPVersionException.cs
- Int64Converter.cs
- RelatedImageListAttribute.cs
- DataGridRowEventArgs.cs
- WebReference.cs
- MenuTracker.cs
- FormsAuthenticationConfiguration.cs
- SqlBulkCopyColumnMappingCollection.cs
- GroupJoinQueryOperator.cs
- MediaSystem.cs
- UnsafeNativeMethods.cs
- MsmqMessageProperty.cs
- RotateTransform3D.cs
- SupportingTokenListenerFactory.cs
- FormatterServices.cs
- ConfigurationManagerInternalFactory.cs
- CodeSubDirectory.cs
- XamlFilter.cs
- PolicyImporterElementCollection.cs
- ConcurrentDictionary.cs
- QilStrConcat.cs
- ArgumentOutOfRangeException.cs
- SharedUtils.cs
- ClientCultureInfo.cs