Subversion Repositories Integrator Subversion

Rev

Rev 762 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
760 blopes 1
package br.com.kronus.core;
2
 
762 blopes 3
import br.com.sl.domain.model.Candle;
4
 
760 blopes 5
public class PadraoGatilho {
776 blopes 6
 
7
        public enum TipoPadrao {
8
        PARCIAL_G2,
9
        COMPLETO_G3
10
    }
760 blopes 11
 
12
    private Candle referencia;
13
    private Candle gatilho1;
14
    private Candle gatilho2;
15
    private Candle gatilho3;
16
    private Candle gatilho4;
776 blopes 17
    private TipoPadrao tipoPadrao;
760 blopes 18
 
19
    public Candle getReferencia() {
20
        return referencia;
21
    }
22
 
23
    public void setReferencia(Candle referencia) {
24
        this.referencia = referencia;
25
    }
26
 
27
    public Candle getGatilho1() {
28
        return gatilho1;
29
    }
30
 
31
    public void setGatilho1(Candle gatilho1) {
32
        this.gatilho1 = gatilho1;
33
    }
34
 
35
    public Candle getGatilho2() {
36
        return gatilho2;
37
    }
38
 
39
    public void setGatilho2(Candle gatilho2) {
40
        this.gatilho2 = gatilho2;
41
    }
42
 
43
    public Candle getGatilho3() {
44
        return gatilho3;
45
    }
46
 
47
    public void setGatilho3(Candle gatilho3) {
48
        this.gatilho3 = gatilho3;
49
    }
50
 
51
    public Candle getGatilho4() {
52
        return gatilho4;
53
    }
54
 
55
    public void setGatilho4(Candle gatilho4) {
56
        this.gatilho4 = gatilho4;
57
    }
776 blopes 58
 
59
    public TipoPadrao getTipoPadrao() {
60
                return tipoPadrao;
61
        }
62
 
63
    public void setTipoPadrao(TipoPadrao tipoPadrao) {
64
                this.tipoPadrao = tipoPadrao;
65
        }
760 blopes 66
 
67
}