/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.example.simple; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; /** * * A representation of the model object 'Quote'. * * *

* The following features are supported: *

*

* * @extends Serializable * @generated */ public interface Quote extends Serializable { /** * Returns the value of the 'Symbol' attribute. * *

* If the meaning of the 'Symbol' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Symbol' attribute. * @see #isSetSymbol() * @see #unsetSymbol() * @see #setSymbol(String) * @generated */ String getSymbol(); /** * Sets the value of the '{@link com.example.simple.Quote#getSymbol Symbol}' attribute. * * * @param value the new value of the 'Symbol' attribute. * @see #isSetSymbol() * @see #unsetSymbol() * @see #getSymbol() * @generated */ void setSymbol(String value); /** * Unsets the value of the '{@link com.example.simple.Quote#getSymbol Symbol}' attribute. * * * @see #isSetSymbol() * @see #getSymbol() * @see #setSymbol(String) * @generated */ void unsetSymbol(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getSymbol Symbol}' attribute is set. * * * @return whether the value of the 'Symbol' attribute is set. * @see #unsetSymbol() * @see #getSymbol() * @see #setSymbol(String) * @generated */ boolean isSetSymbol(); /** * Returns the value of the 'Company Name' attribute. * *

* If the meaning of the 'Company Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Company Name' attribute. * @see #isSetCompanyName() * @see #unsetCompanyName() * @see #setCompanyName(String) * @generated */ String getCompanyName(); /** * Sets the value of the '{@link com.example.simple.Quote#getCompanyName Company Name}' attribute. * * * @param value the new value of the 'Company Name' attribute. * @see #isSetCompanyName() * @see #unsetCompanyName() * @see #getCompanyName() * @generated */ void setCompanyName(String value); /** * Unsets the value of the '{@link com.example.simple.Quote#getCompanyName Company Name}' attribute. * * * @see #isSetCompanyName() * @see #getCompanyName() * @see #setCompanyName(String) * @generated */ void unsetCompanyName(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getCompanyName Company Name}' attribute is set. * * * @return whether the value of the 'Company Name' attribute is set. * @see #unsetCompanyName() * @see #getCompanyName() * @see #setCompanyName(String) * @generated */ boolean isSetCompanyName(); /** * Returns the value of the 'Price' attribute. * *

* If the meaning of the 'Price' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Price' attribute. * @see #isSetPrice() * @see #unsetPrice() * @see #setPrice(BigDecimal) * @generated */ BigDecimal getPrice(); /** * Sets the value of the '{@link com.example.simple.Quote#getPrice Price}' attribute. * * * @param value the new value of the 'Price' attribute. * @see #isSetPrice() * @see #unsetPrice() * @see #getPrice() * @generated */ void setPrice(BigDecimal value); /** * Unsets the value of the '{@link com.example.simple.Quote#getPrice Price}' attribute. * * * @see #isSetPrice() * @see #getPrice() * @see #setPrice(BigDecimal) * @generated */ void unsetPrice(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getPrice Price}' attribute is set. * * * @return whether the value of the 'Price' attribute is set. * @see #unsetPrice() * @see #getPrice() * @see #setPrice(BigDecimal) * @generated */ boolean isSetPrice(); /** * Returns the value of the 'Open1' attribute. * *

* If the meaning of the 'Open1' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Open1' attribute. * @see #isSetOpen1() * @see #unsetOpen1() * @see #setOpen1(BigDecimal) * @generated */ BigDecimal getOpen1(); /** * Sets the value of the '{@link com.example.simple.Quote#getOpen1 Open1}' attribute. * * * @param value the new value of the 'Open1' attribute. * @see #isSetOpen1() * @see #unsetOpen1() * @see #getOpen1() * @generated */ void setOpen1(BigDecimal value); /** * Unsets the value of the '{@link com.example.simple.Quote#getOpen1 Open1}' attribute. * * * @see #isSetOpen1() * @see #getOpen1() * @see #setOpen1(BigDecimal) * @generated */ void unsetOpen1(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getOpen1 Open1}' attribute is set. * * * @return whether the value of the 'Open1' attribute is set. * @see #unsetOpen1() * @see #getOpen1() * @see #setOpen1(BigDecimal) * @generated */ boolean isSetOpen1(); /** * Returns the value of the 'High' attribute. * *

* If the meaning of the 'High' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'High' attribute. * @see #isSetHigh() * @see #unsetHigh() * @see #setHigh(BigDecimal) * @generated */ BigDecimal getHigh(); /** * Sets the value of the '{@link com.example.simple.Quote#getHigh High}' attribute. * * * @param value the new value of the 'High' attribute. * @see #isSetHigh() * @see #unsetHigh() * @see #getHigh() * @generated */ void setHigh(BigDecimal value); /** * Unsets the value of the '{@link com.example.simple.Quote#getHigh High}' attribute. * * * @see #isSetHigh() * @see #getHigh() * @see #setHigh(BigDecimal) * @generated */ void unsetHigh(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getHigh High}' attribute is set. * * * @return whether the value of the 'High' attribute is set. * @see #unsetHigh() * @see #getHigh() * @see #setHigh(BigDecimal) * @generated */ boolean isSetHigh(); /** * Returns the value of the 'Low' attribute. * *

* If the meaning of the 'Low' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Low' attribute. * @see #isSetLow() * @see #unsetLow() * @see #setLow(BigDecimal) * @generated */ BigDecimal getLow(); /** * Sets the value of the '{@link com.example.simple.Quote#getLow Low}' attribute. * * * @param value the new value of the 'Low' attribute. * @see #isSetLow() * @see #unsetLow() * @see #getLow() * @generated */ void setLow(BigDecimal value); /** * Unsets the value of the '{@link com.example.simple.Quote#getLow Low}' attribute. * * * @see #isSetLow() * @see #getLow() * @see #setLow(BigDecimal) * @generated */ void unsetLow(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getLow Low}' attribute is set. * * * @return whether the value of the 'Low' attribute is set. * @see #unsetLow() * @see #getLow() * @see #setLow(BigDecimal) * @generated */ boolean isSetLow(); /** * Returns the value of the 'Volume' attribute. * *

* If the meaning of the 'Volume' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Volume' attribute. * @see #isSetVolume() * @see #unsetVolume() * @see #setVolume(double) * @generated */ double getVolume(); /** * Sets the value of the '{@link com.example.simple.Quote#getVolume Volume}' attribute. * * * @param value the new value of the 'Volume' attribute. * @see #isSetVolume() * @see #unsetVolume() * @see #getVolume() * @generated */ void setVolume(double value); /** * Unsets the value of the '{@link com.example.simple.Quote#getVolume Volume}' attribute. * * * @see #isSetVolume() * @see #getVolume() * @see #setVolume(double) * @generated */ void unsetVolume(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getVolume Volume}' attribute is set. * * * @return whether the value of the 'Volume' attribute is set. * @see #unsetVolume() * @see #getVolume() * @see #setVolume(double) * @generated */ boolean isSetVolume(); /** * Returns the value of the 'Change1' attribute. * *

* If the meaning of the 'Change1' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Change1' attribute. * @see #isSetChange1() * @see #unsetChange1() * @see #setChange1(double) * @generated */ double getChange1(); /** * Sets the value of the '{@link com.example.simple.Quote#getChange1 Change1}' attribute. * * * @param value the new value of the 'Change1' attribute. * @see #isSetChange1() * @see #unsetChange1() * @see #getChange1() * @generated */ void setChange1(double value); /** * Unsets the value of the '{@link com.example.simple.Quote#getChange1 Change1}' attribute. * * * @see #isSetChange1() * @see #getChange1() * @see #setChange1(double) * @generated */ void unsetChange1(); /** * Returns whether the value of the '{@link com.example.simple.Quote#getChange1 Change1}' attribute is set. * * * @return whether the value of the 'Change1' attribute is set. * @see #unsetChange1() * @see #getChange1() * @see #setChange1(double) * @generated */ boolean isSetChange1(); /** * Returns the value of the 'Quotes' containment reference list. * The list contents are of type {@link com.example.simple.Quote}. * *

* If the meaning of the 'Quotes' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Quotes' containment reference list. * @generated */ List getQuotes(); } // Quote