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

org.w3.rdf.RDFValue 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.rdf;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EObject;

import org.osgi.annotation.versioning.ProviderType;

import org.w3.rdfs.RDFResource;

/**
 * 
 * A representation of the model object 'RDF Value'.
 * 
 *
 * 
 * Idiomatic property used for structured values. (Not recommended for use.)
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.w3.rdf.RDFValue#getResource Resource}
  • *
  • {@link org.w3.rdf.RDFValue#getValue Value}
  • *
* * @see org.w3.rdf.RdfPackage#getRDFValue() * @model * @generated */ @ProviderType public interface RDFValue extends EObject { /** * Returns the value of the 'Resource' reference. * * * @return the value of the 'Resource' reference. * @see #setResource(RDFResource) * @see org.w3.rdf.RdfPackage#getRDFValue_Resource() * @model required="true" ordered="false" * @generated */ RDFResource getResource(); /** * Sets the value of the '{@link org.w3.rdf.RDFValue#getResource Resource}' reference. * * * @param value the new value of the 'Resource' reference. * @see #getResource() * @generated */ void setResource(RDFResource value); /** * Returns the value of the 'Value' reference list. * The list contents are of type {@link org.w3.rdfs.RDFResource}. * * * @return the value of the 'Value' reference list. * @see org.w3.rdf.RdfPackage#getRDFValue_Value() * @model ordered="false" * @generated */ EList getValue(); } // RDFValue




© 2015 - 2025 Weber Informatics LLC | Privacy Policy