This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.edpichler.bovespa.persistent.impl; | |
import java.util.Date; | |
import com.edpichler.osgi.bovespa.quote.IQuote; | |
public abstract class Quote implements IQuote { | |
@Override | |
public String toString() { | |
return "Quote [nome=" + nome + ", codigo=" + codigo + ", data=" + data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ICodeQuote extends IQuote, Serializable{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IQuote { | |
/** Ex. Petrobrás */ | |
public abstract String getNome(); | |
public abstract void setNome(String nome); | |
/** Ex.: PETR3 */ | |
public abstract String getCodigo(); |
NewerOlder