Package org.apache.xmlbeans.impl.values

Source Code of org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx

/*   Copyright 2004 The Apache Software Foundation
*
*   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.apache.xmlbeans.impl.values;

import org.apache.xmlbeans.SchemaType;
import org.apache.xmlbeans.StringEnumAbstractBase;
import org.apache.xmlbeans.impl.common.ValidationContext;
import org.apache.xmlbeans.impl.common.QNameHelper;


public abstract class JavaStringEnumerationHolderEx extends JavaStringHolderEx
{
    public JavaStringEnumerationHolderEx(SchemaType type, boolean complex)
    {
        super(type, complex);
    }

    private StringEnumAbstractBase _val;

    // update the intval when setting via text, nil.
    protected void set_text(String s)
    {
        StringEnumAbstractBase enumValue = schemaType().enumForString(s);
        if (enumValue == null)
            throw new XmlValueOutOfRangeException("String '" + s + "' is not a valid enumerated value for " + schemaType());

        super.set_text(s);
        _val = enumValue;
    }

    public static void validateLexical(String v, SchemaType sType, ValidationContext context)
    {
        JavaStringHolderEx.validateLexical(v, sType, context);

        if (sType.hasStringEnumValues())
        {
            if (sType.enumForString(v) == null)
            {
                if (context != null)
                {
                    context.invalid("String '" + v + "' is not a valid enumerated value for " + QNameHelper.readable(sType));
                }
            }
        }
    }

    protected void set_nil()
    {
        _val = null;
        super.set_nil();
    }

    // set/get the enumValue
    public StringEnumAbstractBase enumValue()
    {
        check_dated();
        return _val;
    }

    protected void set_enum(StringEnumAbstractBase enumValue)
    {
        Class ejc = schemaType().getEnumJavaClass();
        if (ejc != null && !enumValue.getClass().equals(ejc))
            throw new XmlValueOutOfRangeException();

        super.set_text(enumValue.toString());
        _val = enumValue;
    }
}
TOP

Related Classes of org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.