Rev 762 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
package br.com.kronus.core;
import br.com.sl.domain.model.Candle;
public class PadraoGatilho {
public enum TipoPadrao {
PARCIAL_G2,
COMPLETO_G3
}
private Candle referencia;
private Candle gatilho1;
private Candle gatilho2;
private Candle gatilho3;
private Candle gatilho4;
private TipoPadrao tipoPadrao;
public Candle getReferencia() {
return referencia;
}
public void setReferencia(Candle referencia) {
this.referencia = referencia;
}
public Candle getGatilho1() {
return gatilho1;
}
public void setGatilho1(Candle gatilho1) {
this.gatilho1 = gatilho1;
}
public Candle getGatilho2() {
return gatilho2;
}
public void setGatilho2(Candle gatilho2) {
this.gatilho2 = gatilho2;
}
public Candle getGatilho3() {
return gatilho3;
}
public void setGatilho3(Candle gatilho3) {
this.gatilho3 = gatilho3;
}
public Candle getGatilho4() {
return gatilho4;
}
public void setGatilho4(Candle gatilho4) {
this.gatilho4 = gatilho4;
}
public TipoPadrao getTipoPadrao() {
return tipoPadrao;
}
public void setTipoPadrao(TipoPadrao tipoPadrao) {
this.tipoPadrao = tipoPadrao;
}
}