Package com.google.gdata.data.extensions

Examples of com.google.gdata.data.extensions.Deleted


   * @param trashed true if the document should be trashed
   */
  public void setTrashed(boolean trashed) {
    if (trashed) {
      this.getCategories().add(Labels.TRASHED);
      this.setExtension(new Deleted());
    } else {
      this.getCategories().remove(Labels.TRASHED);
      this.removeExtension(Deleted.class);
    }
  }
View Full Code Here


   * @param trashed true if the document should be trashed
   */
  public void setTrashed(boolean trashed) {
    if (trashed) {
      this.getCategories().add(Labels.TRASHED);
      this.setExtension(new Deleted());
    } else {
      this.getCategories().remove(Labels.TRASHED);
      this.removeExtension(Deleted.class);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.gdata.data.extensions.Deleted

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.