Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / Annotations / AnnotationMap.cs / 1305600 / AnnotationMap.cs
//----------------------------------------------------------------------------
//
// Copyright(C) Microsoft Corporation. All rights reserved.
//
//
// Description:
// AnnotationMap contains the implementation of the map
// map between annotation id and attached annotations used by the service
//
// History:
// 11/11/2003 magedz: created
// 10/22/2004 rruiz: Moved this class to MS.Internal namespace.
//
// Copyright(C) 2002 by Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Windows.Annotations;
namespace MS.Internal.Annotations
{
///
/// The AnnotationMap holds a map between the Id's of annotations and IAttachedAnnotations
///
internal class AnnotationMap
{
///
/// Add an IAttachedAnnotation to the annotation map.
///
/// the IAttachedAnnotation to be added to the map
internal void AddAttachedAnnotation(IAttachedAnnotation attachedAnnotation)
{
List list = null;
if (!_annotationIdToAttachedAnnotations.TryGetValue(attachedAnnotation.Annotation.Id, out list))
{
list = new List(1);
_annotationIdToAttachedAnnotations.Add(attachedAnnotation.Annotation.Id, list);
}
list.Add(attachedAnnotation);
}
///
/// Remove an IAttachedAnnotation from the annotation map.
///
///
internal void RemoveAttachedAnnotation(IAttachedAnnotation attachedAnnotation)
{
List list = null;
if (_annotationIdToAttachedAnnotations.TryGetValue(attachedAnnotation.Annotation.Id, out list))
{
list.Remove(attachedAnnotation);
if (list.Count == 0)
{
_annotationIdToAttachedAnnotations.Remove(attachedAnnotation.Annotation.Id);
}
}
}
///
/// Returns whether or not there are any annotations currently loaded. This can be
/// used to avoid costly walks of the tree.
///
internal bool IsEmpty
{
get
{
return _annotationIdToAttachedAnnotations.Count == 0;
}
}
///
/// Return a list of IAttachedAnnotations for a given annotation id
///
///
/// list of IAttachedAnnotations
internal List GetAttachedAnnotations(Guid annotationId)
{
List list = null;
if (!_annotationIdToAttachedAnnotations.TryGetValue(annotationId, out list))
{
// return empty list if annotation id not found
return _emptyList;
}
Debug.Assert(list != null, "there should be an attached annotation list for the annotationId: " + annotationId.ToString());
return list;
}
///
/// Return a list of all IAttachedAnnotations in the map
///
/// list of IAttachedAnnotations
internal List GetAllAttachedAnnotations()
{
List result = new List(_annotationIdToAttachedAnnotations.Keys.Count);
foreach (Guid annId in _annotationIdToAttachedAnnotations.Keys)
{
List list = _annotationIdToAttachedAnnotations[annId];
result.AddRange(list);
}
if (result.Count == 0)
{
return _emptyList;
}
return result;
}
// hash table to hold annotation id to AttachedAnnotations list
private Dictionary > _annotationIdToAttachedAnnotations = new Dictionary >();
// a readonly empty list - cached for performance reasons
private static readonly List _emptyList = new List(0);
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
//
// Copyright(C) Microsoft Corporation. All rights reserved.
//
//
// Description:
// AnnotationMap contains the implementation of the map
// map between annotation id and attached annotations used by the service
//
// History:
// 11/11/2003 magedz: created
// 10/22/2004 rruiz: Moved this class to MS.Internal namespace.
//
// Copyright(C) 2002 by Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Windows.Annotations;
namespace MS.Internal.Annotations
{
///
/// The AnnotationMap holds a map between the Id's of annotations and IAttachedAnnotations
///
internal class AnnotationMap
{
///
/// Add an IAttachedAnnotation to the annotation map.
///
/// the IAttachedAnnotation to be added to the map
internal void AddAttachedAnnotation(IAttachedAnnotation attachedAnnotation)
{
List list = null;
if (!_annotationIdToAttachedAnnotations.TryGetValue(attachedAnnotation.Annotation.Id, out list))
{
list = new List(1);
_annotationIdToAttachedAnnotations.Add(attachedAnnotation.Annotation.Id, list);
}
list.Add(attachedAnnotation);
}
///
/// Remove an IAttachedAnnotation from the annotation map.
///
///
internal void RemoveAttachedAnnotation(IAttachedAnnotation attachedAnnotation)
{
List list = null;
if (_annotationIdToAttachedAnnotations.TryGetValue(attachedAnnotation.Annotation.Id, out list))
{
list.Remove(attachedAnnotation);
if (list.Count == 0)
{
_annotationIdToAttachedAnnotations.Remove(attachedAnnotation.Annotation.Id);
}
}
}
///
/// Returns whether or not there are any annotations currently loaded. This can be
/// used to avoid costly walks of the tree.
///
internal bool IsEmpty
{
get
{
return _annotationIdToAttachedAnnotations.Count == 0;
}
}
///
/// Return a list of IAttachedAnnotations for a given annotation id
///
///
/// list of IAttachedAnnotations
internal List GetAttachedAnnotations(Guid annotationId)
{
List list = null;
if (!_annotationIdToAttachedAnnotations.TryGetValue(annotationId, out list))
{
// return empty list if annotation id not found
return _emptyList;
}
Debug.Assert(list != null, "there should be an attached annotation list for the annotationId: " + annotationId.ToString());
return list;
}
///
/// Return a list of all IAttachedAnnotations in the map
///
/// list of IAttachedAnnotations
internal List GetAllAttachedAnnotations()
{
List result = new List(_annotationIdToAttachedAnnotations.Keys.Count);
foreach (Guid annId in _annotationIdToAttachedAnnotations.Keys)
{
List list = _annotationIdToAttachedAnnotations[annId];
result.AddRange(list);
}
if (result.Count == 0)
{
return _emptyList;
}
return result;
}
// hash table to hold annotation id to AttachedAnnotations list
private Dictionary > _annotationIdToAttachedAnnotations = new Dictionary >();
// a readonly empty list - cached for performance reasons
private static readonly List _emptyList = new List(0);
}
}
// 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
- Link.cs
- ContentOperations.cs
- Confirm.cs
- DataIdProcessor.cs
- IdentifierService.cs
- GeneratedContractType.cs
- StyleBamlTreeBuilder.cs
- DynamicQueryableWrapper.cs
- AssemblyNameProxy.cs
- TdsParser.cs
- EDesignUtil.cs
- FieldMetadata.cs
- DocumentSignatureManager.cs
- Menu.cs
- future.cs
- Point.cs
- SinglePageViewer.cs
- TrackingLocationCollection.cs
- LabelAutomationPeer.cs
- CriticalHandle.cs
- ToolStripLocationCancelEventArgs.cs
- RtfControls.cs
- TextEditor.cs
- Content.cs
- JournalEntryListConverter.cs
- WebPartConnectionsCancelVerb.cs
- RectangleHotSpot.cs
- MetadataCache.cs
- HelpProvider.cs
- ManagementEventWatcher.cs
- XmlWrappingReader.cs
- DataControlFieldCollection.cs
- NonVisualControlAttribute.cs
- WindowsSlider.cs
- ToolStripDropDownButton.cs
- QueryLifecycle.cs
- TextEndOfParagraph.cs
- DataGridViewToolTip.cs
- BitmapEffectOutputConnector.cs
- TogglePatternIdentifiers.cs
- TokenizerHelper.cs
- SerializationSectionGroup.cs
- TextTreeUndo.cs
- ComplexBindingPropertiesAttribute.cs
- CompatibleIComparer.cs
- _AuthenticationState.cs
- DbMetaDataCollectionNames.cs
- EntityDescriptor.cs
- ControlLocalizer.cs
- List.cs
- ClientFormsAuthenticationMembershipProvider.cs
- ReadOnlyCollectionBuilder.cs
- AlternationConverter.cs
- Ray3DHitTestResult.cs
- PrintPageEvent.cs
- StrongNameUtility.cs
- SponsorHelper.cs
- WebPartTransformer.cs
- StatusBarPanel.cs
- EntityViewContainer.cs
- TypeConverterValueSerializer.cs
- MessageDesigner.cs
- ColorMap.cs
- EasingKeyFrames.cs
- CachedCompositeFamily.cs
- ZipIOExtraField.cs
- NavigationPropertyEmitter.cs
- TypeInitializationException.cs
- SortAction.cs
- BuilderInfo.cs
- PageCodeDomTreeGenerator.cs
- SettingsPropertyValueCollection.cs
- LinkedList.cs
- ToolStripProgressBar.cs
- TemplatedMailWebEventProvider.cs
- SocketException.cs
- SpeechAudioFormatInfo.cs
- MemoryPressure.cs
- TableColumnCollection.cs
- SqlTriggerAttribute.cs
- MaterialGroup.cs
- LassoHelper.cs
- DataServiceExpressionVisitor.cs
- DataGridHelper.cs
- IMembershipProvider.cs
- TransformedBitmap.cs
- CodeGenerator.cs
- Compiler.cs
- HttpVersion.cs
- EncodingInfo.cs
- IODescriptionAttribute.cs
- ImportDesigner.xaml.cs
- _LazyAsyncResult.cs
- CodeDomSerializer.cs
- EventSinkHelperWriter.cs
- DbConnectionHelper.cs
- LogFlushAsyncResult.cs
- GridViewColumnHeader.cs
- BamlRecordReader.cs
- AddInServer.cs