KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > sqlprofiler > gui > ProfileReportResult


1 /*
2  * Copyright (C) Jahia Ltd. All rights reserved.
3  *
4  * This software is published under the terms of the Jahia Open Software
5  * License version 1.1, a copy of which has been included with this
6  * distribution in the LICENSE.txt file.
7  */

8 package org.jahia.sqlprofiler.gui;
9
10 /**
11  * <p>Title: SQL Profiler</p>
12  * <p>Description: </p>
13  * <p>Copyright: Copyright (c) 2003</p>
14  * <p>Company: Jahia Ltd</p>
15  * @author Serge Huber
16  * @version 1.0
17  */

18
19 public class ProfileReportResult {
20     private double percentage;
21     private int occurences;
22     private long totalElapsedTime;
23     private java.util.ArrayList JavaDoc tableNames;
24     private java.util.ArrayList JavaDoc columnNames;
25     public ProfileReportResult() {
26     }
27     public double getPercentage() {
28         return percentage;
29     }
30     public void setPercentage(double percentage) {
31         this.percentage = percentage;
32     }
33     public int getOccurences() {
34         return occurences;
35     }
36     public void setOccurences(int occurences) {
37         this.occurences = occurences;
38     }
39     public long getTotalElapsedTime() {
40         return totalElapsedTime;
41     }
42     public void setTotalElapsedTime(long totalElapsedTime) {
43         this.totalElapsedTime = totalElapsedTime;
44     }
45     public java.util.ArrayList JavaDoc getTableNames() {
46         return tableNames;
47     }
48     public void setTableNames(java.util.ArrayList JavaDoc tableNames) {
49         this.tableNames = tableNames;
50     }
51     public java.util.ArrayList JavaDoc getColumnNames() {
52         return columnNames;
53     }
54     public void setColumnNames(java.util.ArrayList JavaDoc columnNames) {
55         this.columnNames = columnNames;
56     }
57
58 }
Popular Tags