blob: 88cf7722696006583fef9691a00180387bfd011e [file] [log] [blame]
Stephane Frenotd8b72682006-08-31 13:31:05 +00001/*
2 * Copyright 2005 The Apache Software Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17package org.apache.felix.mosgi.managedelements.memoryprobe.tab;
18
19import java.util.ArrayList;
20import java.util.HashSet;
21import java.util.List;
22import java.util.Map;
23import java.util.Set;
24
25import javax.management.MBeanAttributeInfo;
26import javax.management.MBeanServer;
27import javax.management.ObjectName;
28
29public class NumericAttributeGraph extends AttributeGraphPanel {
30
31 protected Set attributeSet = new HashSet();
32
33 public int getUpdateInterval() {
34 return sleepSlider.getValue();
35 }
36
37 public void setUpdateInterval(int updateInterval) {
38 sleepSlider.setValue(updateInterval);
39 }
40
41 public java.lang.String getAttributeName() {
42 return "Multivalue attribute";
43 }
44
45 public void setAttributeName(java.lang.String attributeName) {
46 this.attributeSet.add(attributeName);
47 }
48
49}