01: /*
02: * Copyright (C) Jahia Ltd. All rights reserved.
03: *
04: * This software is published under the terms of the Jahia Open Software
05: * License version 1.1, a copy of which has been included with this
06: * distribution in the LICENSE.txt file.
07: */
08: package org.jahia.sqlprofiler.gui;
09:
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 tableNames;
24: private java.util.ArrayList columnNames;
25:
26: public ProfileReportResult() {
27: }
28:
29: public double getPercentage() {
30: return percentage;
31: }
32:
33: public void setPercentage(double percentage) {
34: this .percentage = percentage;
35: }
36:
37: public int getOccurences() {
38: return occurences;
39: }
40:
41: public void setOccurences(int occurences) {
42: this .occurences = occurences;
43: }
44:
45: public long getTotalElapsedTime() {
46: return totalElapsedTime;
47: }
48:
49: public void setTotalElapsedTime(long totalElapsedTime) {
50: this .totalElapsedTime = totalElapsedTime;
51: }
52:
53: public java.util.ArrayList getTableNames() {
54: return tableNames;
55: }
56:
57: public void setTableNames(java.util.ArrayList tableNames) {
58: this .tableNames = tableNames;
59: }
60:
61: public java.util.ArrayList getColumnNames() {
62: return columnNames;
63: }
64:
65: public void setColumnNames(java.util.ArrayList columnNames) {
66: this.columnNames = columnNames;
67: }
68:
69: }
|