Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / Utils / Boolean / Literal.cs / 1305376 / Literal.cs
//----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
using System.Collections.ObjectModel;
using System.Diagnostics;
namespace System.Data.Common.Utils.Boolean
{
///
/// Represents a literal in a normal form expression of the form:
///
/// Term
///
/// or
///
/// !Term
///
///
internal sealed class Literal : NormalFormNode,
IEquatable>
{
private readonly TermExpr _term;
private readonly bool _isTermPositive;
///
/// Initialize a new literal.
///
/// Term
/// Sign of term
internal Literal(TermExpr term, bool isTermPositive)
: base(isTermPositive ? (BoolExpr)term : (BoolExpr)new NotExpr(term))
{
Debug.Assert(null != term);
_term = term;
_isTermPositive = isTermPositive;
}
///
/// Gets literal term.
///
internal TermExpr Term
{
get { return _term; }
}
///
/// Gets sign of term.
///
internal bool IsTermPositive
{
get { return _isTermPositive; }
}
///
/// Creates a negated version of this literal.
///
/// !this
internal Literal MakeNegated()
{
return IdentifierService.Instance.NegateLiteral(this);
}
public override string ToString()
{
return StringUtil.FormatInvariant("{0}{1}",
_isTermPositive ? String.Empty : "!",
_term);
}
public override bool Equals(object obj)
{
Debug.Fail("use typed Equals");
return Equals(obj as Literal);
}
public bool Equals(Literal other)
{
return null != other &&
other._isTermPositive == _isTermPositive &&
other._term.Equals(_term);
}
public override int GetHashCode()
{
return _term.GetHashCode();
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
using System.Collections.ObjectModel;
using System.Diagnostics;
namespace System.Data.Common.Utils.Boolean
{
///
/// Represents a literal in a normal form expression of the form:
///
/// Term
///
/// or
///
/// !Term
///
///
internal sealed class Literal : NormalFormNode,
IEquatable>
{
private readonly TermExpr _term;
private readonly bool _isTermPositive;
///
/// Initialize a new literal.
///
/// Term
/// Sign of term
internal Literal(TermExpr term, bool isTermPositive)
: base(isTermPositive ? (BoolExpr)term : (BoolExpr)new NotExpr(term))
{
Debug.Assert(null != term);
_term = term;
_isTermPositive = isTermPositive;
}
///
/// Gets literal term.
///
internal TermExpr Term
{
get { return _term; }
}
///
/// Gets sign of term.
///
internal bool IsTermPositive
{
get { return _isTermPositive; }
}
///
/// Creates a negated version of this literal.
///
/// !this
internal Literal MakeNegated()
{
return IdentifierService.Instance.NegateLiteral(this);
}
public override string ToString()
{
return StringUtil.FormatInvariant("{0}{1}",
_isTermPositive ? String.Empty : "!",
_term);
}
public override bool Equals(object obj)
{
Debug.Fail("use typed Equals");
return Equals(obj as Literal);
}
public bool Equals(Literal other)
{
return null != other &&
other._isTermPositive == _isTermPositive &&
other._term.Equals(_term);
}
public override int GetHashCode()
{
return _term.GetHashCode();
}
}
}
// 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
- BitmapEffect.cs
- LocatorGroup.cs
- CodeAccessPermission.cs
- SHA256.cs
- FilterFactory.cs
- ItemChangedEventArgs.cs
- BindingContext.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- BitmapCacheBrush.cs
- HandlerMappingMemo.cs
- DBAsyncResult.cs
- DataRowCollection.cs
- ExpressionLink.cs
- ShimAsPublicXamlType.cs
- DoubleAnimationUsingKeyFrames.cs
- Socket.cs
- SizeAnimationClockResource.cs
- Parsers.cs
- AsmxEndpointPickerExtension.cs
- GcHandle.cs
- QuestionEventArgs.cs
- ErrorWrapper.cs
- CalendarDataBindingHandler.cs
- ValueTypeFixupInfo.cs
- DependencyPropertyHelper.cs
- CredentialCache.cs
- BuildManagerHost.cs
- WindowsEditBox.cs
- Adorner.cs
- XPathConvert.cs
- FileDialog_Vista_Interop.cs
- GeneralTransform2DTo3DTo2D.cs
- DESCryptoServiceProvider.cs
- CompleteWizardStep.cs
- ElementHostAutomationPeer.cs
- ThreadNeutralSemaphore.cs
- SecurityToken.cs
- DiscoveryExceptionDictionary.cs
- XPathNodePointer.cs
- EncryptedXml.cs
- DataListItem.cs
- SiteMembershipCondition.cs
- DefaultDiscoveryServiceExtension.cs
- EmptyEnumerator.cs
- StylusCaptureWithinProperty.cs
- EdmSchemaAttribute.cs
- ObjectAnimationUsingKeyFrames.cs
- DataGridViewLayoutData.cs
- DetailsViewUpdatedEventArgs.cs
- OLEDB_Util.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- UnsafeNativeMethods.cs
- StringSource.cs
- DynamicPhysicalDiscoSearcher.cs
- ToolTipService.cs
- ListChunk.cs
- SymbolDocumentInfo.cs
- AttributeCollection.cs
- GeneralTransform3DGroup.cs
- SpellerError.cs
- Panel.cs
- OverflowException.cs
- QilGeneratorEnv.cs
- FixedDocument.cs
- ConfigErrorGlyph.cs
- DataBindingHandlerAttribute.cs
- PreviewControlDesigner.cs
- MarshalByValueComponent.cs
- EventProxy.cs
- TextPointerBase.cs
- ByteConverter.cs
- Contracts.cs
- StringFormat.cs
- StandardToolWindows.cs
- MethodRental.cs
- TypeDescriptionProviderAttribute.cs
- QuaternionValueSerializer.cs
- IndexedEnumerable.cs
- ParsedAttributeCollection.cs
- XmlByteStreamWriter.cs
- FieldToken.cs
- PenLineCapValidation.cs
- MobileTextWriter.cs
- SingleStorage.cs
- ExclusiveNamedPipeTransportManager.cs
- FontSource.cs
- VisualCollection.cs
- RtfToXamlReader.cs
- ImageAnimator.cs
- IxmlLineInfo.cs
- TracedNativeMethods.cs
- EditorPartChrome.cs
- IndexOutOfRangeException.cs
- ADRoleFactory.cs
- arclist.cs
- NameValuePair.cs
- SelectionBorderGlyph.cs
- ImportedPolicyConversionContext.cs
- CollectionsUtil.cs
- Paragraph.cs