[Mc4j-cvs] mc4j/src/org/mc4j/console/dashboard/match ServerAttributeCondition.java,1.1,1.2
Brought to you by:
ghinkl
From: Greg H. <gh...@us...> - 2004-04-07 15:41:22
|
Update of /cvsroot/mc4j/mc4j/src/org/mc4j/console/dashboard/match In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23048/src/org/mc4j/console/dashboard/match Modified Files: ServerAttributeCondition.java Log Message: Fixed property accessor Index: ServerAttributeCondition.java =================================================================== RCS file: /cvsroot/mc4j/mc4j/src/org/mc4j/console/dashboard/match/ServerAttributeCondition.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ServerAttributeCondition.java 7 Apr 2004 02:52:33 -0000 1.1 --- ServerAttributeCondition.java 7 Apr 2004 15:28:18 -0000 1.2 *************** *** 21,26 **** import org.mc4j.console.bean.MBeanNode; - import org.w3c.dom.Element; - /** * @author Greg Hinkle (gh...@us...), Apr 5, 2004 --- 21,24 ---- *************** *** 44,48 **** public boolean testCondition(MBeanNode node) { ! return serverType.equals(node.getConnectionNode().GetConnectionType()); } } --- 42,46 ---- public boolean testCondition(MBeanNode node) { ! return serverType.equals(node.getConnectionNode().getConnectionType()); } } |