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

📄 quote.java

📁 ajax基础教程配套的例子源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/**
 * Quote.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter.
 */

package ajaxdashboard.ws.stockquote;

public class Quote  implements java.io.Serializable {
    private java.lang.String companyName;
    private java.lang.String stockTicker;
    private java.lang.String stockQuote;
    private java.lang.String lastUpdated;
    private java.lang.String change;
    private java.lang.String openPrice;
    private java.lang.String dayHighPrice;
    private java.lang.String dayLowPrice;
    private java.lang.String volume;
    private java.lang.String marketCap;
    private java.lang.String yearRange;

    public Quote() {
    }

    public Quote(
           java.lang.String companyName,
           java.lang.String stockTicker,
           java.lang.String stockQuote,
           java.lang.String lastUpdated,
           java.lang.String change,
           java.lang.String openPrice,
           java.lang.String dayHighPrice,
           java.lang.String dayLowPrice,
           java.lang.String volume,
           java.lang.String marketCap,
           java.lang.String yearRange) {
           this.companyName = companyName;
           this.stockTicker = stockTicker;
           this.stockQuote = stockQuote;
           this.lastUpdated = lastUpdated;
           this.change = change;
           this.openPrice = openPrice;
           this.dayHighPrice = dayHighPrice;
           this.dayLowPrice = dayLowPrice;
           this.volume = volume;
           this.marketCap = marketCap;
           this.yearRange = yearRange;
    }


    /**
     * Gets the companyName value for this Quote.
     * 
     * @return companyName
     */
    public java.lang.String getCompanyName() {
        return companyName;
    }


    /**
     * Sets the companyName value for this Quote.
     * 
     * @param companyName
     */
    public void setCompanyName(java.lang.String companyName) {
        this.companyName = companyName;
    }


    /**
     * Gets the stockTicker value for this Quote.
     * 
     * @return stockTicker
     */
    public java.lang.String getStockTicker() {
        return stockTicker;
    }


    /**
     * Sets the stockTicker value for this Quote.
     * 
     * @param stockTicker
     */
    public void setStockTicker(java.lang.String stockTicker) {
        this.stockTicker = stockTicker;
    }


    /**
     * Gets the stockQuote value for this Quote.
     * 
     * @return stockQuote
     */
    public java.lang.String getStockQuote() {
        return stockQuote;
    }


    /**
     * Sets the stockQuote value for this Quote.
     * 
     * @param stockQuote
     */
    public void setStockQuote(java.lang.String stockQuote) {
        this.stockQuote = stockQuote;
    }


    /**
     * Gets the lastUpdated value for this Quote.
     * 
     * @return lastUpdated
     */
    public java.lang.String getLastUpdated() {
        return lastUpdated;
    }


    /**
     * Sets the lastUpdated value for this Quote.
     * 
     * @param lastUpdated
     */
    public void setLastUpdated(java.lang.String lastUpdated) {
        this.lastUpdated = lastUpdated;
    }


    /**
     * Gets the change value for this Quote.
     * 
     * @return change
     */
    public java.lang.String getChange() {
        return change;
    }


    /**
     * Sets the change value for this Quote.
     * 
     * @param change
     */
    public void setChange(java.lang.String change) {
        this.change = change;
    }


    /**
     * Gets the openPrice value for this Quote.
     * 
     * @return openPrice
     */
    public java.lang.String getOpenPrice() {
        return openPrice;
    }


    /**
     * Sets the openPrice value for this Quote.
     * 
     * @param openPrice
     */
    public void setOpenPrice(java.lang.String openPrice) {
        this.openPrice = openPrice;
    }


    /**
     * Gets the dayHighPrice value for this Quote.
     * 
     * @return dayHighPrice
     */
    public java.lang.String getDayHighPrice() {
        return dayHighPrice;
    }


    /**
     * Sets the dayHighPrice value for this Quote.
     * 
     * @param dayHighPrice
     */
    public void setDayHighPrice(java.lang.String dayHighPrice) {
        this.dayHighPrice = dayHighPrice;
    }


    /**
     * Gets the dayLowPrice value for this Quote.
     * 
     * @return dayLowPrice
     */
    public java.lang.String getDayLowPrice() {
        return dayLowPrice;
    }


    /**
     * Sets the dayLowPrice value for this Quote.
     * 
     * @param dayLowPrice
     */
    public void setDayLowPrice(java.lang.String dayLowPrice) {
        this.dayLowPrice = dayLowPrice;
    }


    /**
     * Gets the volume value for this Quote.
     * 
     * @return volume
     */
    public java.lang.String getVolume() {
        return volume;
    }


    /**
     * Sets the volume value for this Quote.
     * 
     * @param volume
     */
    public void setVolume(java.lang.String volume) {
        this.volume = volume;
    }


    /**
     * Gets the marketCap value for this Quote.
     * 
     * @return marketCap
     */
    public java.lang.String getMarketCap() {
        return marketCap;
    }


⌨️ 快捷键说明

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