Subversion Repositories Integrator Subversion

Rev

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

Rev Author Line No. Line
760 blopes 1
package br.com.kronus.core;
2
 
3
public class PadraoGatilho {
4
 
5
    private Candle referencia;
6
    private Candle gatilho1;
7
    private Candle gatilho2;
8
    private Candle gatilho3;
9
    private Candle gatilho4;
10
 
11
    public Candle getReferencia() {
12
        return referencia;
13
    }
14
 
15
    public void setReferencia(Candle referencia) {
16
        this.referencia = referencia;
17
    }
18
 
19
    public Candle getGatilho1() {
20
        return gatilho1;
21
    }
22
 
23
    public void setGatilho1(Candle gatilho1) {
24
        this.gatilho1 = gatilho1;
25
    }
26
 
27
    public Candle getGatilho2() {
28
        return gatilho2;
29
    }
30
 
31
    public void setGatilho2(Candle gatilho2) {
32
        this.gatilho2 = gatilho2;
33
    }
34
 
35
    public Candle getGatilho3() {
36
        return gatilho3;
37
    }
38
 
39
    public void setGatilho3(Candle gatilho3) {
40
        this.gatilho3 = gatilho3;
41
    }
42
 
43
    public Candle getGatilho4() {
44
        return gatilho4;
45
    }
46
 
47
    public void setGatilho4(Candle gatilho4) {
48
        this.gatilho4 = gatilho4;
49
    }
50
 
51
}