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

org.w3.rdfs.SubPropertyOf Maven / Gradle / Ivy

/*
 * Copyright (c) 2012 - 2024 Data In Motion and others.
 * All rights reserved. 
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 * 
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *      Mark Hoffmann - initial API and implementation
 */
package org.w3.rdfs;

import org.eclipse.emf.ecore.EObject;

import org.osgi.annotation.versioning.ProviderType;

import org.w3.rdf.RDFProperty;

/**
 * 
 * A representation of the model object 'Sub Property Of'.
 * 
 *
 * 
 * The subject is a subproperty of a property.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.w3.rdfs.SubPropertyOf#getProperty Property}
  • *
  • {@link org.w3.rdfs.SubPropertyOf#getSubPropertyOf Sub Property Of}
  • *
* * @see org.w3.rdfs.RdfsPackage#getSubPropertyOf() * @model * @generated */ @ProviderType public interface SubPropertyOf extends EObject { /** * Returns the value of the 'Property' reference. * It is bidirectional and its opposite is '{@link org.w3.rdf.RDFProperty#getSubPropertyOf Sub Property Of}'. * * * @return the value of the 'Property' reference. * @see #setProperty(RDFProperty) * @see org.w3.rdfs.RdfsPackage#getSubPropertyOf_Property() * @see org.w3.rdf.RDFProperty#getSubPropertyOf * @model opposite="subPropertyOf" required="true" ordered="false" * @generated */ RDFProperty getProperty(); /** * Sets the value of the '{@link org.w3.rdfs.SubPropertyOf#getProperty Property}' reference. * * * @param value the new value of the 'Property' reference. * @see #getProperty() * @generated */ void setProperty(RDFProperty value); /** * Returns the value of the 'Sub Property Of' reference. * * * @return the value of the 'Sub Property Of' reference. * @see #setSubPropertyOf(RDFProperty) * @see org.w3.rdfs.RdfsPackage#getSubPropertyOf_SubPropertyOf() * @model required="true" ordered="false" * @generated */ RDFProperty getSubPropertyOf(); /** * Sets the value of the '{@link org.w3.rdfs.SubPropertyOf#getSubPropertyOf Sub Property Of}' reference. * * * @param value the new value of the 'Sub Property Of' reference. * @see #getSubPropertyOf() * @generated */ void setSubPropertyOf(RDFProperty value); } // SubPropertyOf




© 2015 - 2025 Weber Informatics LLC | Privacy Policy