~ubuntu-branches/debian/jessie/bgfinancas/jessie

« back to all changes in this revision

Viewing changes to src/Biblioteca/JanelaModal.java

  • Committer: Package Import Robot
  • Author(s): Jose Robson Mariano Alves
  • Date: 2014-09-24 15:01:45 UTC
  • Revision ID: package-import@ubuntu.com-20140924150145-le88tcphc5vmc8sh
Tags: upstream-2.0
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2010, 2012, 2014 Jose Robson Mariano Alves
 
3
 
 
4
This file is part of bgfinancas.
 
5
 
 
6
This program is free software: you can redistribute it and/or modify
 
7
it under the terms of the GNU General Public License as published by
 
8
the Free Software Foundation, either version 3 of the License, or
 
9
(at your option) any later version.
 
10
 
 
11
This package is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with this program. If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
*/
 
20
 
 
21
package Biblioteca;
 
22
 
 
23
import Linguagens.Linguagem;
 
24
import java.awt.Font;
 
25
import javax.swing.JDialog;
 
26
 
 
27
public class JanelaModal extends javax.swing.JDialog {
 
28
    
 
29
    public Linguagem Lingua = Linguagem.getInstance();
 
30
    public Font FonteFinancas = Fonte.getInstance().getFonte();
 
31
    public Font FonteFinancasNegrito = Fonte.getInstance().getFonteNegrito();
 
32
    public Font FonteFinancasPequena = Fonte.getInstance().getFontePequena();
 
33
    public Conexao Banco = Conexao.getInstance();
 
34
    
 
35
    public JanelaModal(java.awt.Frame parent, boolean modal){
 
36
        super(parent, modal);
 
37
    }
 
38
       
 
39
    public JDialog getJanela(){
 
40
        return this;
 
41
    }
 
42
    
 
43
    public void Botoes(String acao){ }
 
44
    
 
45
}