/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.management; import java.io.Serializable; /** * An implementation of Query expression. Apply always returns false. * *

Revisions: *

20020317 Adrian Brock: *

* * @author Adrian Brock. * @version $Revision: 1.2 $ */ /*package*/ class QueryExpSupport implements QueryExp { // Constants --------------------------------------------------- // Attributes -------------------------------------------------- // Static ------------------------------------------------------ // Public ------------------------------------------------------ // QueryExp implementation ------------------------------------- public boolean apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException, BadAttributeValueExpException, InvalidApplicationException { return false; } public void setMBeanServer(MBeanServer server) { QueryEval.server.set(server); } // X overides -------------------------------------------------- // Protected --------------------------------------------------- // Package Private --------------------------------------------- // Private ----------------------------------------------------- // Inner classes ----------------------------------------------- }