Update of /cvsroot/mc4j/mc4j/src/org/mc4j/chires/components/log
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20162/src/org/mc4j/chires/components/log
Added Files:
LogView.java
Log Message:
Merging EMS into head for the 2.0 release work
--- NEW FILE: LogView.java ---
/*
* Copyright 2002-2004 Greg Hinkle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mc4j.chires.components.log;
import org.mc4j.console.dashboard.components.BeanComponent;
import org.mc4j.ems.connection.bean.EmsBean;
import org.jdesktop.swing.JXTable;
import java.util.Map;
/**
* @author Greg Hinkle (gh...@us...), Jan 31, 2005
* @version $Revision: 1.2 $($Author: ghinkl $ / $Date: 2006/04/12 19:14:15 $)
*/
public class LogView extends JXTable implements BeanComponent {
// private void MBeanServer server;
public void setBean(EmsBean emsBean) {
// Map notificationNodes = emsBean.getNotificationNodeMap();
// for (Iterator iterator = notificationNodes.entrySet().iterator(); iterator.hasNext();) {
// Map.Entry entry = (Map.Entry) iterator.next();
// String notificationName = (String) entry.getKey();
// NotificationNode notificationNode = (NotificationNode) entry.getValue();
// notificationNode.Li
//}
// this.server.addNotificationListener(
// this.objectName,
// this.listener,
// filters[i],
// null);
}
public void setContext(Map context) {
}
public void refresh() {
}
}
|