Source Code Cross Referenced for MonitorInt.java in  » Profiler » JAMon » com » jamonapi » 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 » Profiler » JAMon » com.jamonapi 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.jamonapi;
002:
003:        import java.util.Date;
004:
005:        import com.jamonapi.utils.ToArray;
006:
007:        /**
008:         * MonitorInt.java
009:         *
010:         * Created on February 2, 2006, 7:54 PM
011:         */
012:
013:        interface MonitorInt {
014:
015:            public double getTotal();
016:
017:            public void setTotal(double value);
018:
019:            public double getAvg();
020:
021:            public double getMin();
022:
023:            public void setMin(double value);
024:
025:            public double getMax();
026:
027:            public void setMax(double value);
028:
029:            public double getHits();
030:
031:            public void setHits(double value);
032:
033:            public double getStdDev();
034:
035:            public void setFirstAccess(Date date);
036:
037:            public Date getFirstAccess();
038:
039:            public void setLastAccess(Date date);
040:
041:            public Date getLastAccess();
042:
043:            public double getLastValue();
044:
045:            public void setLastValue(double value);
046:
047:            /** Start a monitor.  This increments the active counter by one. Calling start is not 
048:                required.  If it is called stop should be called too. */
049:            public Monitor start();
050:
051:            /** Stop a monitor.  The decrements the active counter by one.  Calling stop is 
052:             *  required if start is called.
053:             */
054:            public Monitor stop();
055:
056:            /** This method adds a value to the monitor (and aggegates statistics on it)
057:             */
058:            public Monitor add(double value);
059:
060:            /** reset all values in the monitor to their defaults */
061:            public void reset();
062:
063:            /** enable the monitor.  If the monitor is enabled all other calls to the monitor 
064:             * have an action
065:             */
066:            public void enable();
067:
068:            /** Disable the monitor.  If a monitor is disabled all other calls to the monitor
069:             * are noops.
070:             **/
071:            public void disable();
072:
073:            /** Is the monitor enabled. */
074:            public boolean isEnabled();
075:
076:            /** Return the Range object associated with this monitor.  The range object is a compromise
077:             between saving all data or none
078:             */
079:            public Range getRange();
080:
081:            /** Return the label associated with this monitor.  */
082:            public MonKey getMonKey();
083:
084:            public double getActive();
085:
086:            public void setActive(double value);
087:
088:            public double getMaxActive();
089:
090:            public void setMaxActive(double value);
091:
092:            public void setTotalActive(double value);
093:
094:            public double getAvgActive();
095:
096:            public boolean isPrimary();
097:
098:            /** Indicate that this a primary Monitor.  See www.jamonapi.com for an explanation of primary monitors **/
099:            public void setPrimary(boolean isPrimary);
100:
101:            // Some jamon 2.4 introduced methods.  Mostly listener related.
102:            public ListenerType getListenerType(String listenerType);
103:
104:            public boolean hasListeners();
105:
106:            public void setActivityTracking(boolean trackActivity);
107:
108:            public boolean isActivityTracking();
109:
110:            public JAMonDetailValue getJAMonDetailRow();
111:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.