Subversion Repositories Integrator Subversion

Rev

Rev 760 | Rev 776 | 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 {
6
 
7
    private Candle referencia;
8
    private Candle gatilho1;
9
    private Candle gatilho2;
10
    private Candle gatilho3;
11
    private Candle gatilho4;
12
 
13
    public Candle getReferencia() {
14
        return referencia;
15
    }
16
 
17
    public void setReferencia(Candle referencia) {
18
        this.referencia = referencia;
19
    }
20
 
21
    public Candle getGatilho1() {
22
        return gatilho1;
23
    }
24
 
25
    public void setGatilho1(Candle gatilho1) {
26
        this.gatilho1 = gatilho1;
27
    }
28
 
29
    public Candle getGatilho2() {
30
        return gatilho2;
31
    }
32
 
33
    public void setGatilho2(Candle gatilho2) {
34
        this.gatilho2 = gatilho2;
35
    }
36
 
37
    public Candle getGatilho3() {
38
        return gatilho3;
39
    }
40
 
41
    public void setGatilho3(Candle gatilho3) {
42
        this.gatilho3 = gatilho3;
43
    }
44
 
45
    public Candle getGatilho4() {
46
        return gatilho4;
47
    }
48
 
49
    public void setGatilho4(Candle gatilho4) {
50
        this.gatilho4 = gatilho4;
51
    }
52
 
53
}