/clients/cs/src/contentforshopping/elements/requireddestination.cs
http://google-gdata.googlecode.com/ · C# · 52 lines · 25 code · 3 blank · 24 comment · 0 complexity · 671ac162db9a0ef5713dad96b80dc09d MD5 · raw file
- /* Copyright (c) 2006 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- using System;
- using Google.GData.Extensions;
-
- namespace Google.GData.ContentForShopping.Elements {
- public class RequiredDestination : SimpleElement {
- /// <summary>
- /// default constructor for sc:required_destination
- /// </summary>
- public RequiredDestination()
- : base(ContentForShoppingNameTable.RequiredDestination,
- ContentForShoppingNameTable.scDataPrefix,
- ContentForShoppingNameTable.BaseNamespace) {
- }
-
- /// <summary>
- /// Constructs a new RequiredDestination instance with the specified values.
- /// </summary>
- /// <param name="destination">The required destination.</param>
- public RequiredDestination(string destination)
- : base(ContentForShoppingNameTable.RequiredDestination,
- ContentForShoppingNameTable.scDataPrefix,
- ContentForShoppingNameTable.BaseNamespace) {
- this.Destination = destination;
- }
-
- /// <summary>
- /// Destination property accessor
- /// </summary>
- public string Destination {
- get {
- return Convert.ToString(Attributes[ContentForShoppingNameTable.Destination]);
- }
- set {
- Attributes[ContentForShoppingNameTable.Destination] = value;
- }
- }
- }
- }