Source Code Cross Referenced for ColumnProperties.java in  » Report » jmagallanes-1.0 » com » calipso » reportgenerator » userinterface » 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 » Report » jmagallanes 1.0 » com.calipso.reportgenerator.userinterface 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.calipso.reportgenerator.userinterface;
002:
003:        import com.calipso.reportgenerator.reportdefinitions.types.DimensionDefinitionOrderType;
004:
005:        import java.util.Set;
006:        import java.util.TreeSet;
007:
008:        /**
009:         * Esta clase crea las propidaes de cada columna de una vista determinada
010:         */
011:        public class ColumnProperties {
012:            private int width;
013:            private String columnName;
014:            private Set excludeValue;
015:            private DimensionDefinitionOrderType order;
016:            private String location;
017:            private int ubication;
018:            private String rankMetricName;
019:
020:            /**
021:             * Retorna la ubicacion de la columna
022:             * @return
023:             */
024:            public int getUbication() {
025:                return ubication;
026:            }
027:
028:            /**
029:             * Setea la ubicacion de la columna
030:             * @param ubication
031:             */
032:            public void setUbication(int ubication) {
033:                this .ubication = ubication;
034:            }
035:
036:            /**
037:             * Obtiene el orden de la columna
038:             * @return
039:             */
040:            public DimensionDefinitionOrderType getOrder() {
041:                return order;
042:            }
043:
044:            /**
045:             *Setea un nuevo orden a la columna
046:             * @param order
047:             */
048:            public void setOrder(DimensionDefinitionOrderType order) {
049:                this .order = order;
050:            }
051:
052:            /**
053:             * Obtine la ubicacion de la columna (ROW - COLUMN - PAGE)
054:             * @return
055:             */
056:            public String getLocation() {
057:                return location;
058:            }
059:
060:            /**
061:             * Setea la ubicacion de la columna (ROW - COLUMN - PAGE)
062:             * @param location
063:             */
064:            public void setLocation(String location) {
065:                this .location = location;
066:            }
067:
068:            /**
069:             * Crea un nuevo objeto ColumnProperties
070:             */
071:            public ColumnProperties() {
072:                excludeValue = new TreeSet();
073:            }
074:
075:            /**
076:             * Retorna la lista de valores excluidos
077:             * @return
078:             */
079:            public Set getExcludeValue() {
080:                return excludeValue;
081:            }
082:
083:            /**
084:             * Setea la lista de valores excluidos
085:             * @param set
086:             */
087:            public void setExcludeValue(Set set) {
088:                this .excludeValue = set;
089:            }
090:
091:            /**
092:             * Retorna el ancho de la columna
093:             * @return
094:             */
095:            public int getWidth() {
096:                return width;
097:            }
098:
099:            /**
100:             * Setea el ancho de la columna
101:             * @param width
102:             */
103:            public void setWidth(int width) {
104:                this .width = width;
105:            }
106:
107:            /**
108:             * Retorna el nombre de la columna
109:             * @return
110:             */
111:            public String getColumnName() {
112:                return columnName;
113:            }
114:
115:            /**
116:             * Setea el nombre de la columna
117:             * @param columnName
118:             */
119:            public void setColumnName(String columnName) {
120:                this .columnName = columnName;
121:            }
122:
123:            /**
124:             * Retorna el RankingMetricName
125:             * @return
126:             */
127:            public String getRankMetricName() {
128:                return rankMetricName;
129:            }
130:
131:            /**
132:             * Setea el RankingMetricName
133:             * @param rankMetricName
134:             */
135:
136:            public void setRankMetricName(String rankMetricName) {
137:                this.rankMetricName = rankMetricName;
138:            }
139:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.