All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.abdera.model.ExtensibleElementWrapper Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  The ASF licenses this file to You
 * 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.  For additional information regarding
 * copyright in this work, please see the NOTICE file in the top level
 * directory of this distribution.
 */
package org.apache.abdera.model;

import java.util.List;
import javax.xml.namespace.QName;
import org.apache.abdera.factory.Factory;

/**
 *  ElementWrapper implementation that implements the ExtensibleElement interface. This should be used to create static
 *  extension elements that support extensions
 *
 * @deprecated This API is deprecated as Apache Abdera is a retired project since 2017.
 */
@SuppressWarnings("unchecked")
@Deprecated(since = "2021-07-29")
public abstract class ExtensibleElementWrapper extends ElementWrapper implements ExtensibleElement {

    protected ExtensibleElementWrapper(Element internal) {
        super(internal);
    }

    public ExtensibleElementWrapper(Factory factory, QName qname) {
        super(factory, qname);
    }

    protected ExtensibleElement getExtInternal() {
        return (ExtensibleElement) getInternal();
    }

    public  T addExtension(Element extension) {
        getExtInternal().addExtension(extension);
        return (T) this;
    }

    public  T addExtension(QName qname) {
        return (T) getExtInternal().addExtension(qname);
    }

    public  T addExtension(String namespace, String localPart, String prefix) {
        return (T) getExtInternal().addExtension(namespace, localPart, prefix);
    }

    public Element addSimpleExtension(QName qname, String value) {
        return getExtInternal().addSimpleExtension(qname, value);
    }

    public Element addSimpleExtension(String namespace, String localPart, String prefix, String value) {
        return getExtInternal().addSimpleExtension(namespace, localPart, prefix, value);
    }

    public  T getExtension(QName qname) {
        return (T) getExtInternal().getExtension(qname);
    }

    public  T getExtension(Class _class) {
        return (T) getExtInternal().getExtension(_class);
    }

    public List getExtensions() {
        return getExtInternal().getExtensions();
    }

    public List getExtensions(String uri) {
        return getExtInternal().getExtensions(uri);
    }

    public  List getExtensions(QName qname) {
        return getExtInternal().getExtensions(qname);
    }

    public String getSimpleExtension(QName qname) {
        return getExtInternal().getSimpleExtension(qname);
    }

    public String getSimpleExtension(String namespace, String localPart, String prefix) {
        return getExtInternal().getSimpleExtension(namespace, localPart, prefix);
    }

    public boolean getMustPreserveWhitespace() {
        return getExtInternal().getMustPreserveWhitespace();
    }

    public  T setMustPreserveWhitespace(boolean preserve) {
        getExtInternal().setMustPreserveWhitespace(preserve);
        return (T) this;
    }

    public  T addExtension(Element extension, Element before) {
        getExtInternal().addExtension(extension, before);
        return (T) this;
    }

    public  T addExtension(QName qname, QName before) {
        return (T) getExtInternal().addExtension(qname, before);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy