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

📄 rating.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.extensions;import com.google.gdata.util.common.xml.XmlWriter;import com.google.gdata.data.Extension;import com.google.gdata.data.ExtensionDescription;import com.google.gdata.data.ExtensionPoint;import com.google.gdata.data.ExtensionProfile;import com.google.gdata.util.Namespaces;import com.google.gdata.util.ParseException;import com.google.gdata.util.XmlParser.ElementHandler;import org.xml.sax.Attributes;import java.io.IOException;import java.util.ArrayList;import java.util.List;/** * GData schema extension describing an object's rating. * *  */public class Rating extends ExtensionPoint implements Extension {  /**   * Rating type. Describes the meaning of this rating.   */  public static final class Rel {    /** Overall rating. Higher values mean better ratings. */    public static final String OVERALL = null;    /** Quality rating. Higher values mean better quality. */    public static final String QUALITY = Namespaces.gPrefix + "quality";    /** Price rating. Higher values mean higher prices. */    public static final String PRICE = Namespaces.gPrefix + "price";  }  /** Rating type. */  protected String rel;  public String getRel() {    return rel;  }  public void setRel(String v) {    rel = v;  }  /** Rating value (required). */  protected Integer rating;  public int getValue() {    return rating;  }  public void setValue(int r) {    rating = r;  }  /** Minimum rating value on rating scale (required). */  protected Integer min;  public int getMin() {    return min;  }  public void setMin(int r) {    min = r;  }  /** Maximum rating value on rating scale (required). */  protected Integer max;  public int getMax() {    return max;  }  public void setMax(int r) {    max = r;  }  /** Number of ratings that was taken into account (for average ratings). */  protected Integer numRaters;  public int getNumRaters() {    return numRaters;  }  public void setNumRaters(int r) {    numRaters = r;  }  /**   * Returns the suggested extension description with configurable   * repeatability.   */  public static ExtensionDescription getDefaultDescription(boolean repeatable) {    ExtensionDescription desc = new ExtensionDescription();    desc.setExtensionClass(Rating.class);    desc.setNamespace(Namespaces.gNs);    desc.setLocalName("rating");    desc.setRepeatable(repeatable);    return desc;  }  /** Returns the suggested extension description and is repeatable. */  public static ExtensionDescription getDefaultDescription() {    return getDefaultDescription(true);  }  public void generate(XmlWriter w, ExtensionProfile extProfile)      throws IOException {    List<XmlWriter.Attribute> attrs = new ArrayList<XmlWriter.Attribute>();    if (rel != null) {      attrs.add(new XmlWriter.Attribute("rel", rel));    }    if (rating != null) {      attrs.add(new XmlWriter.Attribute("value", rating.toString()));    }    if (min != null) {      attrs.add(new XmlWriter.Attribute("min", min.toString()));    }    if (max != null) {      attrs.add(new XmlWriter.Attribute("max", max.toString()));    }    if (numRaters != null) {      attrs.add(new XmlWriter.Attribute("numRaters", numRaters.toString()));    }    generateStartElement(w, Namespaces.gNs, "rating", attrs, null);    // Invoke ExtensionPoint.    generateExtensions(w, extProfile);    w.endElement(Namespaces.gNs, "rating");  }  public ElementHandler getHandler(ExtensionProfile extProfile,                                   String namespace,                                   String localName,                                   Attributes attrs)      throws ParseException, IOException {    return new Handler(extProfile);  }  /** <g:rating> parser */  private class Handler extends ExtensionPoint.ExtensionHandler {    public Handler(ExtensionProfile extProfile) throws ParseException,        IOException {      super(extProfile, Rating.class);    }    public void processAttribute(String namespace,                                 String localName,                                 String value)        throws ParseException, NumberFormatException {      if (namespace.equals("")) {        if (localName.equals("value")) {          rating = Integer.parseInt(value);        } else if (localName.equals("max")) {          max = Integer.parseInt(value);        } else if (localName.equals("min")) {          min = Integer.parseInt(value);        } else if (localName.equals("rel")) {          rel = value;        } else if (localName.equals("numRaters")) {          numRaters = Integer.parseInt(value);        }      }    }    public void processEndElement() throws ParseException {      if (rating == null) {        throw new ParseException("g:rating/@value is required.");      }      if (max == null) {        throw new ParseException("g:rating/@max is required.");      }      if (min == null) {        throw new ParseException("g:rating/@min is required.");      }      if (rating > max || rating < min) {        throw new ParseException("g:rating/@value should lie in between "          + "g:rating/@min and g:rating/@max.");      }    }  }}

⌨️ 快捷键说明

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