Source Code Cross Referenced for ProjecaoFinanceira.java in  » ERP-CRM-Financial » Personal-Finance-Manager » br » com » gfp » data » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » Personal Finance Manager » br.com.gfp.data 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Created on 21/02/2005
003:         * 
004:         * Swing Components - visit http://sf.net/projects/gfd
005:         * 
006:         * Copyright (C) 2004  Igor Regis da Silva Simões
007:         * 
008:         * This program is free software; you can redistribute it and/or
009:         * modify it under the terms of the GNU General Public License
010:         * as published by the Free Software Foundation; either version 2
011:         * of the License, or (at your option) any later version.
012:         *
013:         * This program is distributed in the hope that it will be useful,
014:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
015:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
016:         * GNU General Public License for more details.
017:         *
018:         * You should have received a copy of the GNU General Public License
019:         * along with this program; if not, write to the Free Software
020:         * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
021:         */
022:        package br.com.gfp.data;
023:
024:        import java.security.InvalidParameterException;
025:
026:        /**
027:         * Esta classe representa uma projeçã financeira é possui 
028:         * algumas informações importantes para se realizar uma
029:         * projeção de qualidade.
030:         *  
031:         * @author Igor Regis da Silva Simões
032:         */
033:        public class ProjecaoFinanceira {
034:            private double valor = 0;
035:
036:            private double variacao = 0;
037:
038:            private int tendencia = 1;
039:
040:            /**
041:             * Indica que a tendência da estimativa é de alta
042:             */
043:            public static final int ALTA = 2;
044:
045:            /**
046:             * Indica que a tendência da estimativa é permanacer estável
047:             */
048:            public static final int ESTAVEL = 1;
049:
050:            /**
051:             * Indica que o tendencia da estimativa é de queda
052:             */
053:            public static final int QUEDA = 0;
054:
055:            /**
056:             *  Indica a tendencia da variação medida, os valores possiveis
057:             *  são expressos pelas constantes:
058:             *  ALTA
059:             *  ESTAVEL
060:             *  QUEDA
061:             * @return Returns the tendencia.
062:             */
063:            public int getTendencia() {
064:                return tendencia;
065:            }
066:
067:            /**
068:             *  Indica a tendencia da variação medida, os valores possiveis
069:             *  são expressos pelas constantes:
070:             *  ALTA
071:             *  ESTAVEL
072:             *  QUEDA
073:             * @param tendencia
074:             *            The tendencia to set.
075:             */
076:            public void setTendencia(int tendencia) {
077:                if (tendencia != ALTA && tendencia != QUEDA
078:                        && tendencia != ESTAVEL)
079:                    throw new InvalidParameterException("Parâmetro Inválido!");
080:                this .tendencia = tendencia;
081:            }
082:
083:            /**
084:             *  Valor do que esta sendo medido. Como por exemplo
085:             *  media ou mediana
086:             * @return Returns the valor.
087:             */
088:            public double getValor() {
089:                return valor;
090:            }
091:
092:            /**
093:             *  Valor do que esta sendo medido. Como por exemplo
094:             *  media ou mediana
095:             * @param valor
096:             */
097:            public void setValor(double valor) {
098:                this .valor = valor;
099:            }
100:
101:            /**
102:             *  Variação do valor medido a longo prazo. No caso de media 
103:             *  ou mediana indica se a tendencia e subir ou descer X% 
104:             *  onde X é o valor da variação
105:             * @return Returns the variacao.
106:             */
107:            public double getVariacao() {
108:                return variacao;
109:            }
110:
111:            /**
112:             *  Variação do valor medido a longo prazo. No caso de media 
113:             *  ou mediana indica se a tendencia e subir ou descer X% 
114:             *  onde X é o valor da variação
115:             * @param variacao 
116:             */
117:            public void setVariacao(double variacao) {
118:                this .variacao = variacao;
119:            }
120:
121:            /**
122:             * Representação deste objeto em forma de string
123:             * @see java.lang.Object#toString()
124:             */
125:            @Override
126:            public String toString() {
127:                return "Projeção: Valor="
128:                        + valor
129:                        + "; Variação="
130:                        + variacao
131:                        + "; Tendencia="
132:                        + (tendencia == ESTAVEL ? "ESTAVEL"
133:                                : tendencia == ALTA ? "ALTA" : "QUEDA");
134:            }
135:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.