827N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
827N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
827N/A *
827N/A * This code is free software; you can redistribute it and/or modify it
827N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
827N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
827N/A *
827N/A * This code is distributed in the hope that it will be useful, but WITHOUT
827N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
827N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
827N/A * version 2 for more details (a copy is included in the LICENSE file that
827N/A * accompanied this code).
827N/A *
827N/A * You should have received a copy of the GNU General Public License version
827N/A * 2 along with this work; if not, write to the Free Software Foundation,
827N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
827N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
827N/A */
827N/Apackage com.sun.beans.decoder;
827N/A
827N/A/**
827N/A * This class is intended to handle <void> element.
827N/A * This element looks like <object> element,
827N/A * but its value is not used as an argument for element
827N/A * that contains this one.
827N/A * <p>The following atributes are supported:
827N/A * <dl>
827N/A * <dt>class
827N/A * <dd>the type is used for static methods and fields
827N/A * <dt>method
827N/A * <dd>the method name
827N/A * <dt>property
827N/A * <dd>the property name
827N/A * <dt>index
827N/A * <dd>the property index
827N/A * <dt>field
827N/A * <dd>the field name
827N/A * <dt>idref
827N/A * <dd>the identifier to refer to the variable
827N/A * <dt>id
827N/A * <dd>the identifier of the variable that is intended to store the result
827N/A * </dl>
827N/A *
827N/A * @since 1.7
827N/A *
827N/A * @author Sergey A. Malenkov
827N/A */
827N/Afinal class VoidElementHandler extends ObjectElementHandler {
827N/A
827N/A /**
827N/A * Tests whether the value of this element can be used
827N/A * as an argument of the element that contained in this one.
827N/A *
827N/A * @return {@code true} if the value of this element should be used
827N/A * as an argument of the element that contained in this one,
827N/A * {@code false} otherwise
827N/A */
827N/A @Override
827N/A protected boolean isArgument() {
827N/A return false; // hack for compatibility
827N/A }
827N/A}