Package Products :: Package ZenRRD :: Module RRDMGraph
[hide private]
[frames] | no frames]

Source Code for Module Products.ZenRRD.RRDMGraph

 1  ############################################################################## 
 2  #  
 3  # Copyright (C) Zenoss, Inc. 2007, all rights reserved. 
 4  #  
 5  # This content is made available according to terms specified in 
 6  # License.zenoss under the directory where your Zenoss product is installed. 
 7  #  
 8  ############################################################################## 
 9   
10   
11  __doc__="""RRDMGraph 
12   
13  RRDMGraph stores mgraph representations for later graphing. 
14   
15  $Id: RRDMGraph.py,v 1.1 2003/04/25 15:50:19 edahl Exp $""" 
16   
17  __version__ = "$Revision: 1.1 $"[11:-2] 
18   
19  from Globals import Persistent 
20   
21 -class RRDMGraph(Persistent):
22
23 - def __init__(self, mtargets, views):
24 self._mtargets = mtargets 25 self._views = views
26
27 - def getMTargets(self):
28 return self._mtargets
29
30 - def getViews(self):
31 return self._views
32