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

org.w3.rdf.Rest 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.osgi.annotation.versioning.ProviderType;

/**
 * 
 * A representation of the model object 'Rest'.
 * 
 *
 * 
 * The rest of the subject RDF list after the first item.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.w3.rdf.Rest#getParent Parent}
  • *
* * @see org.w3.rdf.RdfPackage#getRest() * @model * @generated */ @ProviderType public interface Rest extends RDFList { /** * Returns the value of the 'Parent' reference. * It is bidirectional and its opposite is '{@link org.w3.rdf.RDFList#getRest Rest}'. * * * @return the value of the 'Parent' reference. * @see #setParent(RDFList) * @see org.w3.rdf.RdfPackage#getRest_Parent() * @see org.w3.rdf.RDFList#getRest * @model opposite="rest" required="true" ordered="false" * @generated */ RDFList getParent(); /** * Sets the value of the '{@link org.w3.rdf.Rest#getParent Parent}' reference. * * * @param value the new value of the 'Parent' reference. * @see #getParent() * @generated */ void setParent(RDFList value); } // Rest




© 2015 - 2025 Weber Informatics LLC | Privacy Policy