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

io.github.jeddict.jpa.spec.extend.ClassMembers Maven / Gradle / Ivy

Go to download

Jeddict is an open source Jakarta EE application development platform that accelerates developers productivity and simplifies development tasks of creating complex entity relationship models.

There is a newer version: 6.3.1
Show newest version
/**
 * Copyright 2013-2022 the original author or authors from the Jeddict project (https://jeddict.github.io/).
 *
 * 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 io.github.jeddict.jpa.spec.extend;

import io.github.jeddict.jpa.spec.validator.ClassMemberValidator;
import java.util.ArrayList;
import java.util.List;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlIDREF;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

/**
 *
 * @author Gaurav Gupta
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlJavaTypeAdapter(value = ClassMemberValidator.class)
public class ClassMembers {

    @XmlIDREF
    @XmlElement(name = "a")
    protected List attributes;
    @XmlAttribute(name = "e")
    private boolean enable = true;
    
    @XmlElement(name="pre")
    private String preCode;
    @XmlElement(name="post")
    private String postCode;

    public boolean addAttribute(Attribute attribute) {
        return getAttributes().add(attribute);
    }

    public boolean isExist(Attribute attribute) {
        return getAttributes().stream().filter(a -> a == attribute).findAny().isPresent();
    }

    public boolean removeAttribute(Attribute attribute) {
        return getAttributes().remove(attribute);
    }

    /**
     * @return the attributes
     */
    public List getAttributes() {
        if (attributes == null) {
            attributes = new ArrayList<>();
        }
        return attributes;
    }

    public List getAttributeNames() {
        return getAttributes()
                .stream()
                .map(Attribute::getName)
                .collect(toList());
    }

    /**
     * @param attributes the attributes to set
     */
    public void setAttributes(List attributes) {
        this.attributes = attributes;
    }

    /**
     * @return the enable
     */
    public boolean isEnable() {
        return enable;
    }

    /**
     * @param enable the enable to set
     */
    public void setEnable(boolean enable) {
        this.enable = enable;
    }
    
    @Override
    public String toString() {
        return getAttributes()
                .stream()
                .map(a -> a.getDataTypeLabel() + " " + a.getName())
                .collect(joining(", "));
    }
    
    /**
     * @return the preCode
     */
    public String getPreCode() {
        return preCode;
    }

    /**
     * @param preCode the preCode to set
     */
    public void setPreCode(String preCode) {
        this.preCode = preCode;
    }

    /**
     * @return the postCode
     */
    public String getPostCode() {
        return postCode;
    }

    /**
     * @param postCode the postCode to set
     */
    public void setPostCode(String postCode) {
        this.postCode = postCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy