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

org.xowl.infra.lang.impl.Owl2LiteralImpl Maven / Gradle / Ivy

There is a newer version: 2.3.4
Show newest version
/*******************************************************************************
 * Copyright (c) 2016 Association Cénotélie (cenotelie.fr)
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General
 * Public License along with this program.
 * If not, see .
 ******************************************************************************/

package org.xowl.infra.lang.impl;

import org.xowl.infra.lang.owl2.*;

import java.util.*;

/**
 * The default implementation for Literal
 * Original OWL class is http://xowl.org/infra/lang/owl2#Literal
 *
 * @author xOWL code generator
 */
public class Owl2LiteralImpl implements Literal {
    /**
     * The backing data for the property LangTag
     * This implements the storage for original OWL property http://xowl.org/infra/lang/owl2#langTag
     */
    private String __implLangTag;

    @Override
    public String getLangTag() {
        return __implLangTag;
    }

    @Override
    public void setLangTag(String elem) {
        __implLangTag = elem;
    }

    /**
     * The backing data for the property LexicalValue
     * This implements the storage for original OWL property http://xowl.org/infra/lang/owl2#lexicalValue
     */
    private String __implLexicalValue;

    @Override
    public String getLexicalValue() {
        return __implLexicalValue;
    }

    @Override
    public void setLexicalValue(String elem) {
        __implLexicalValue = elem;
    }

    /**
     * The backing data for the property MemberOf
     * This implements the storage for original OWL property http://xowl.org/infra/lang/owl2#memberOf
     */
    private IRI __implMemberOf;

    /**
     * Adds a value to the property MemberOf
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to add (must not be null)
     */
    protected void doSimpleAddMemberOf(IRI elem) {
        __implMemberOf = elem;
    }

    /**
     * Removes a value from the property MemberOf
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to remove (must not be null)
     */
    protected void doSimpleRemoveMemberOf(IRI elem) {
        __implMemberOf = null;
    }

    /**
     * Adds a value to the property MemberOf
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to add (must not be null)
     */
    private void doPropertyAddMemberOf(IRI elem) {
        doSimpleAddMemberOf(elem);
    }

    /**
     * Removes a value from the property MemberOf
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to remove (must not be null)
     */
    private void doPropertyRemoveMemberOf(IRI elem) {
        doSimpleRemoveMemberOf(elem);
    }

    /**
     * Tries to add a value to the property MemberOf and its super properties (if any)
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to add (must not be null)
     */
    private void doGraphAddMemberOf(IRI elem) {
        doPropertyAddMemberOf(elem);
    }

    /**
     * Tries to remove a value from the property MemberOf and its super properties (if any)
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to remove (must not be null)
     */
    private void doGraphRemoveMemberOf(IRI elem) {
        doPropertyRemoveMemberOf(elem);
    }

    /**
     * Dispatches the request for the addition of a value to the property MemberOf
     * This method tries to delegate to a sub property, if any.
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to add (must not be null)
     */
    private void doDispatchAddMemberOf(IRI elem) {
        doGraphAddMemberOf(elem);
    }

    /**
     * Dispatches the request for the removal of a value from the property MemberOf
     * This method tries to delegate to a sub property, if any.
     * Original OWL property is http://xowl.org/infra/lang/owl2#memberOf
     *
     * @param elem The element value to remove (must not be null)
     */
    private void doDispatchRemoveMemberOf(IRI elem) {
        doGraphRemoveMemberOf(elem);
    }

    @Override
    public IRI getMemberOf() {
        return __implMemberOf;
    }

    @Override
    public void setMemberOf(IRI elem) {
        if (__implMemberOf == elem)
            return;
        if (elem == null) {
            doDispatchRemoveMemberOf(__implMemberOf);
        } else if (__implMemberOf == null) {
            doDispatchAddMemberOf(elem);
        } else {
            doDispatchRemoveMemberOf(__implMemberOf);
            doDispatchAddMemberOf(elem);
        }
    }

    /**
     * Constructor for the implementation of Literal
     */
    public Owl2LiteralImpl() {
        // initialize property http://xowl.org/infra/lang/owl2#langTag
        this.__implLangTag = null;
        // initialize property http://xowl.org/infra/lang/owl2#lexicalValue
        this.__implLexicalValue = null;
        // initialize property http://xowl.org/infra/lang/owl2#memberOf
        this.__implMemberOf = null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy