Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / GrammarBuilding / itemelement.cs / 1 / itemelement.cs
//------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------
using System.Collections.Generic;
using System.Diagnostics;
using System.Speech.Recognition;
using System.Speech.Internal.SrgsParser;
using System.Text;
namespace System.Speech.Internal.GrammarBuilding
{
///
///
///
#if VSCOMPILE
[DebuggerDisplay ("{DebugSummary}")]
#endif
internal sealed class ItemElement : BuilderElements
{
//*******************************************************************
//
// Constructors
//
//*******************************************************************
#region Constructors
///
///
///
///
internal ItemElement (GrammarBuilderBase builder)
: this (builder, 1, 1)
{
}
///
///
///
///
///
internal ItemElement (int minRepeat, int maxRepeat)
: this ((GrammarBuilderBase) null, minRepeat, maxRepeat)
{
}
///
///
///
///
///
///
internal ItemElement (GrammarBuilderBase builder, int minRepeat, int maxRepeat)
{
if (builder != null)
{
Add (builder);
}
_minRepeat = minRepeat;
_maxRepeat = maxRepeat;
}
///
///
///
///
///
///
internal ItemElement (List builders, int minRepeat, int maxRepeat)
{
foreach (GrammarBuilderBase builder in builders)
{
Items.Add (builder);
}
_minRepeat = minRepeat;
_maxRepeat = maxRepeat;
}
///
///
///
///
internal ItemElement (GrammarBuilder builders)
{
foreach (GrammarBuilderBase builder in builders.InternalBuilder.Items)
{
Items.Add (builder);
}
}
#endregion
//********************************************************************
//
// Public Methods
//
//*******************************************************************
#region Public Methods
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.Equals"]/*' />
public override bool Equals (object obj)
{
ItemElement refObj = obj as ItemElement;
if (refObj == null)
{
return false;
}
if (!base.Equals (obj))
{
return false;
}
return _minRepeat == refObj._minRepeat && _maxRepeat == refObj._maxRepeat;
}
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.GetHashCode"]/*' />
public override int GetHashCode ()
{
return base.GetHashCode ();
}
#endregion
//********************************************************************
//
// Internal Methods
//
//********************************************************************
#region Internal Methods
///
///
///
///
internal override GrammarBuilderBase Clone ()
{
ItemElement item = new ItemElement (_minRepeat, _maxRepeat);
item.CloneItems (this);
return item;
}
///
///
///
///
///
///
///
///
internal override IElement CreateElement (IElementFactory elementFactory, IElement parent, IRule rule, IdentifierCollection ruleIds)
{
// Create and return the real item (the item including the grammar)
// for the current grammar
IItem item = elementFactory.CreateItem (parent, rule, _minRepeat, _maxRepeat, 0.5f, 1f);
// Create the children elements
CreateChildrenElements (elementFactory, item, rule, ruleIds);
return item;
}
#endregion
//*******************************************************************
//
// Private Fields
//
//********************************************************************
#region Private Fields
private readonly int _minRepeat = 1;
private readonly int _maxRepeat = 1;
#endregion
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------
using System.Collections.Generic;
using System.Diagnostics;
using System.Speech.Recognition;
using System.Speech.Internal.SrgsParser;
using System.Text;
namespace System.Speech.Internal.GrammarBuilding
{
///
///
///
#if VSCOMPILE
[DebuggerDisplay ("{DebugSummary}")]
#endif
internal sealed class ItemElement : BuilderElements
{
//*******************************************************************
//
// Constructors
//
//*******************************************************************
#region Constructors
///
///
///
///
internal ItemElement (GrammarBuilderBase builder)
: this (builder, 1, 1)
{
}
///
///
///
///
///
internal ItemElement (int minRepeat, int maxRepeat)
: this ((GrammarBuilderBase) null, minRepeat, maxRepeat)
{
}
///
///
///
///
///
///
internal ItemElement (GrammarBuilderBase builder, int minRepeat, int maxRepeat)
{
if (builder != null)
{
Add (builder);
}
_minRepeat = minRepeat;
_maxRepeat = maxRepeat;
}
///
///
///
///
///
///
internal ItemElement (List builders, int minRepeat, int maxRepeat)
{
foreach (GrammarBuilderBase builder in builders)
{
Items.Add (builder);
}
_minRepeat = minRepeat;
_maxRepeat = maxRepeat;
}
///
///
///
///
internal ItemElement (GrammarBuilder builders)
{
foreach (GrammarBuilderBase builder in builders.InternalBuilder.Items)
{
Items.Add (builder);
}
}
#endregion
//********************************************************************
//
// Public Methods
//
//*******************************************************************
#region Public Methods
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.Equals"]/*' />
public override bool Equals (object obj)
{
ItemElement refObj = obj as ItemElement;
if (refObj == null)
{
return false;
}
if (!base.Equals (obj))
{
return false;
}
return _minRepeat == refObj._minRepeat && _maxRepeat == refObj._maxRepeat;
}
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.GetHashCode"]/*' />
public override int GetHashCode ()
{
return base.GetHashCode ();
}
#endregion
//********************************************************************
//
// Internal Methods
//
//********************************************************************
#region Internal Methods
///
///
///
///
internal override GrammarBuilderBase Clone ()
{
ItemElement item = new ItemElement (_minRepeat, _maxRepeat);
item.CloneItems (this);
return item;
}
///
///
///
///
///
///
///
///
internal override IElement CreateElement (IElementFactory elementFactory, IElement parent, IRule rule, IdentifierCollection ruleIds)
{
// Create and return the real item (the item including the grammar)
// for the current grammar
IItem item = elementFactory.CreateItem (parent, rule, _minRepeat, _maxRepeat, 0.5f, 1f);
// Create the children elements
CreateChildrenElements (elementFactory, item, rule, ruleIds);
return item;
}
#endregion
//*******************************************************************
//
// Private Fields
//
//********************************************************************
#region Private Fields
private readonly int _minRepeat = 1;
private readonly int _maxRepeat = 1;
#endregion
}
}
// 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
- CollectionEditVerbManager.cs
- LoadedOrUnloadedOperation.cs
- TextEditorContextMenu.cs
- CapabilitiesState.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- QuestionEventArgs.cs
- SeekStoryboard.cs
- ValidatingCollection.cs
- UserControlDocumentDesigner.cs
- ViewCellSlot.cs
- XmlHierarchyData.cs
- CqlLexerHelpers.cs
- CancelEventArgs.cs
- PointHitTestParameters.cs
- NavigationCommands.cs
- XpsFixedDocumentReaderWriter.cs
- validationstate.cs
- Expressions.cs
- RequestCache.cs
- CancellationToken.cs
- SafeFreeMibTable.cs
- SystemNetworkInterface.cs
- KeyTimeConverter.cs
- FormsAuthenticationCredentials.cs
- MessageRpc.cs
- LayoutInformation.cs
- SafeCryptHandles.cs
- MobileControlDesigner.cs
- BrowserDefinitionCollection.cs
- CodeAttributeArgument.cs
- Lookup.cs
- StylusPointPropertyId.cs
- FileDialogCustomPlacesCollection.cs
- BigInt.cs
- RepeatBehavior.cs
- MessageQueueCriteria.cs
- DefaultTextStore.cs
- HttpRawResponse.cs
- EncodingNLS.cs
- ThousandthOfEmRealPoints.cs
- SQLChars.cs
- DesignerActionKeyboardBehavior.cs
- CodeEventReferenceExpression.cs
- OrderablePartitioner.cs
- BitmapEffectInputConnector.cs
- SqlDataReader.cs
- PEFileReader.cs
- DataSourceControl.cs
- UnicastIPAddressInformationCollection.cs
- URLAttribute.cs
- unsafenativemethodstextservices.cs
- Menu.cs
- FixedTextView.cs
- PrimitiveXmlSerializers.cs
- FloaterParagraph.cs
- JournalEntry.cs
- DiscreteKeyFrames.cs
- JsonReader.cs
- TreeNode.cs
- ListBoxItem.cs
- KeyValuePairs.cs
- BidOverLoads.cs
- SoapServerProtocol.cs
- ServiceDesigner.xaml.cs
- keycontainerpermission.cs
- ExceptionUtil.cs
- ViewPort3D.cs
- OdbcUtils.cs
- StreamReader.cs
- SafeFileHandle.cs
- ButtonStandardAdapter.cs
- PageCache.cs
- ApplyTemplatesAction.cs
- PeerNameResolver.cs
- MultitargetUtil.cs
- ExternalCalls.cs
- ListViewSelectEventArgs.cs
- ConfigurationManagerInternalFactory.cs
- WindowsStatic.cs
- MissingMemberException.cs
- ColumnHeader.cs
- X509Certificate2.cs
- MasterPageCodeDomTreeGenerator.cs
- DelegateTypeInfo.cs
- PageContentCollection.cs
- XmlCollation.cs
- FontNamesConverter.cs
- PageParser.cs
- Tag.cs
- DBSchemaRow.cs
- C14NUtil.cs
- PeerUnsafeNativeCryptMethods.cs
- BasicSecurityProfileVersion.cs
- PrintEvent.cs
- GenericNameHandler.cs
- RadioButtonList.cs
- ThumbAutomationPeer.cs
- AstTree.cs
- Root.cs
- EventProviderTraceListener.cs