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

📄 listentry.java

📁 google gdata API 很好用的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.gdata.data.spreadsheet;import com.google.gdata.data.BaseEntry;import com.google.gdata.data.Category;import com.google.gdata.data.Content;import com.google.gdata.data.ExtensionProfile;import com.google.gdata.data.Kind;import com.google.gdata.data.TextConstruct;/** * Atom Entry for one single row Google Spreadsheets in the list-based * access mode. * *  */@Kind.Term(ListEntry.KIND)public class ListEntry    extends BaseEntry<ListEntry> {  /**   * Kind category term used to label the flexible-schema list entries.   */  public static final String KIND = Namespaces.gSpreadPrefix + "list";  /**   * Category used to label the flexible-schema list entries.   */  public static final Category CATEGORY =    new Category(Namespaces.gSpread, KIND);  /**   * The aggregation of all gx:* elements.   */  private CustomElementCollection customElements;  /**   * Constructs an empty CellEntry to be populated by the XML parsing process.   */  public ListEntry() {    getCategories().add(CATEGORY);    init();  }  /**   * Constructs a List Entry with the given information.    *    * @param id the permanent ID of this entry   * @param versionId the version identifier of the snapshot   */  public ListEntry(String id, String versionId) {    this();        setId(id);    setVersionId(versionId);  }  /**   * Constructs from a copy.   *    * @param sourceEntry source to copy from   */  public ListEntry(BaseEntry sourceEntry) {    super(sourceEntry);    getCategories().add(CATEGORY);    if (this.getExtension(CustomElementCollection.class) == null) {      init();    }  }  /**   * Common initialization code for new list entries.   */  private void init() {    customElements = new CustomElementCollection();    this.setExtension(customElements);  }  /**   * Gets the collection of custom elements that contain all the special   * gsx data items.  This is how you access your spreadsheet data.   *    * @return a CustomElement object for getting all the internal data   */  public CustomElementCollection getCustomElements() {    return customElements;  }  /**   * Prevents setting the server-generated field.   */  @Override  public void setTitle(TextConstruct v) {    throw new UnsupportedOperationException(        "Title is server-generated for Google Spreadsheets list access.");  }  /**   * Prevents setting the server-generated field.   */  @Override  public void setContent(Content c) {    throw new UnsupportedOperationException(        "Content is server-generated for Google Spreadsheets list access.");  }  /**   * Prevents setting the server-generated field.   */  @Override  public void setContent(TextConstruct c) {    throw new UnsupportedOperationException(        "Content is server-generated for Google Spreadsheets list access.");  }    /**   * Prevents setting the server-generated field.   */  @Override  public void setSummary(TextConstruct v) {    throw new UnsupportedOperationException(        "Summary is server-generated for Google Spreadsheets list access.");  }  /**   * Lets the GData server populate this entry with the atom:title.   */  public void setAutomaticallyGeneratedTitle(TextConstruct v) {    state.title = v;  }  /**   * Lets the GData server populate this entry with the atom:content.   */  public void setAutomaticallyGeneratedContent(Content c) {    state.content = c;  }  /**   * Lets the GData server populate this entry with the atom:summary.   */  public void setAutomaticallyGeneratedSummary(TextConstruct v) {    state.summary = v;  }  /**   * Declares the extensions used by the XML parser in the given profile object.   */  public void declareExtensions(ExtensionProfile extProfile) {    extProfile.declareEntryExtension(        CustomElementCollection.getDefaultDescription());  }}

⌨️ 快捷键说明

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