⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itemtypedescription.java

📁 google的gdata api包
💻 JAVA
字号:
/* 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. */package com.google.api.gbase.client;import com.google.api.gbase.client.GmAttributes.GmAttribute;import com.google.gdata.data.BaseEntry;import java.util.Collection;import java.util.List;/** * A description of an item type done by the gm: tags in a * google base entry. * * Make sure the current feed is an item type feed and then get the * ItemTypeDescription for the entry using: * {@link GoogleBaseEntry#getGoogleBaseMetadata()}.getItemTypeDescription() */public class ItemTypeDescription {  private final BaseEntry owner;  /**   * Creates an ItemTypeDescription.   *   * @param owner entry the description is in   */  ItemTypeDescription(BaseEntry owner) {    this.owner = owner;  }  void setName(String name) {    if (name == null) {      owner.removeExtension(GmItemType.class);    } else {      owner.setExtension(new GmItemType(name));    }  }    /**   * Gets the item type name.   */  public String getName() {    GmItemType tag = owner.getExtension(GmItemType.class);    return tag == null ? null : tag.getItemType();  }  /**   * Get the list of attribute ids defined for this item type.   *   * @return unmodifiable list of attribute ids   * @deprecated use {@link #getAttributes()} instead   */  public List<? extends GoogleBaseAttributeId> getAttributeIds() {    return getGmAttributesExtension().getAttributeIds();  }    /**   * Get the list of attribute ids with extra information as defined for this    * item type.   *   * @return unmodifiable list of GmAttribute objects   */  public Collection<GmAttribute> getAttributes() {    return getGmAttributesExtension().getAttributes();  }  /**   * Returns the GmAttributes instance associated to the owner of the    * description. If the owner has no GmAttributes defined, a new instance   * is created, assigned to the owner and returned.   */  private GmAttributes getGmAttributesExtension() {    GmAttributes attributes = owner.getExtension(GmAttributes.class);    if (attributes == null) {      attributes = new GmAttributes();      owner.setExtension(attributes);    }    return attributes;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -