Subversion Repositories Integrator Subversion

Rev

Rev 762 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 762 Rev 776
Line 1... Line 1...
1
package br.com.kronus.core;
1
package br.com.kronus.core;
2
2
3
import br.com.sl.domain.model.Candle;
3
import br.com.sl.domain.model.Candle;
4
4
5
public class PadraoGatilho {
5
public class PadraoGatilho {
-
 
6
       
-
 
7
        public enum TipoPadrao {
-
 
8
        PARCIAL_G2,
-
 
9
        COMPLETO_G3
-
 
10
    }
6
11
7
    private Candle referencia;
12
    private Candle referencia;
8
    private Candle gatilho1;
13
    private Candle gatilho1;
9
    private Candle gatilho2;
14
    private Candle gatilho2;
10
    private Candle gatilho3;
15
    private Candle gatilho3;
11
    private Candle gatilho4;
16
    private Candle gatilho4;
-
 
17
    private TipoPadrao tipoPadrao;
12
   
18
   
13
    public Candle getReferencia() {
19
    public Candle getReferencia() {
14
        return referencia;
20
        return referencia;
15
    }
21
    }
16
22
Line 47... Line 53...
47
    }
53
    }
48
54
49
    public void setGatilho4(Candle gatilho4) {
55
    public void setGatilho4(Candle gatilho4) {
50
        this.gatilho4 = gatilho4;
56
        this.gatilho4 = gatilho4;
51
    }
57
    }
-
 
58
   
-
 
59
    public TipoPadrao getTipoPadrao() {
-
 
60
                return tipoPadrao;
-
 
61
        }
-
 
62
   
-
 
63
    public void setTipoPadrao(TipoPadrao tipoPadrao) {
-
 
64
                this.tipoPadrao = tipoPadrao;
-
 
65
        }
52
66
53
}
67
}