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

org.eclipse.dawnsci.nexus.NXcite Maven / Gradle / Ivy

/*-
 *******************************************************************************
 * Copyright (c) 2015 Diamond Light Source Ltd.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * This file was auto-generated from the NXDL XML definition.
 *******************************************************************************/

package org.eclipse.dawnsci.nexus;

import org.eclipse.dawnsci.analysis.api.tree.DataNode;
import org.eclipse.january.dataset.IDataset;

/**
 * A literature reference
 * Definition to include references for example for detectors,
 * manuals, instruments, acquisition or analysis software used.
 * The idea would be to include this in the relevant NeXus object:
 * :ref:`NXdetector` for detectors, :ref:`NXinstrument` for instruments, etc.
 * 
 */
public interface NXcite extends NXobject {

	public static final String NX_DESCRIPTION = "description";
	public static final String NX_URL = "url";
	public static final String NX_DOI = "doi";
	public static final String NX_ENDNOTE = "endnote";
	public static final String NX_BIBTEX = "bibtex";
	/**
	 * This should describe the reason for including this reference.
	 * For example: The dataset in this group was normalised using the method
	 * which is described in detail in this reference.
	 * 

* Type: NX_CHAR *

* * @return the value. */ public IDataset getDescription(); /** * This should describe the reason for including this reference. * For example: The dataset in this group was normalised using the method * which is described in detail in this reference. *

* Type: NX_CHAR *

* * @param description the description */ public DataNode setDescription(IDataset description); /** * This should describe the reason for including this reference. * For example: The dataset in this group was normalised using the method * which is described in detail in this reference. *

* Type: NX_CHAR *

* * @return the value. */ public String getDescriptionScalar(); /** * This should describe the reason for including this reference. * For example: The dataset in this group was normalised using the method * which is described in detail in this reference. *

* Type: NX_CHAR *

* * @param description the description */ public DataNode setDescriptionScalar(String description); /** * URL referencing the document or data. *

* Type: NX_CHAR *

* * @return the value. */ public IDataset getUrl(); /** * URL referencing the document or data. *

* Type: NX_CHAR *

* * @param url the url */ public DataNode setUrl(IDataset url); /** * URL referencing the document or data. *

* Type: NX_CHAR *

* * @return the value. */ public String getUrlScalar(); /** * URL referencing the document or data. *

* Type: NX_CHAR *

* * @param url the url */ public DataNode setUrlScalar(String url); /** * DOI referencing the document or data. *

* Type: NX_CHAR *

* * @return the value. */ public IDataset getDoi(); /** * DOI referencing the document or data. *

* Type: NX_CHAR *

* * @param doi the doi */ public DataNode setDoi(IDataset doi); /** * DOI referencing the document or data. *

* Type: NX_CHAR *

* * @return the value. */ public String getDoiScalar(); /** * DOI referencing the document or data. *

* Type: NX_CHAR *

* * @param doi the doi */ public DataNode setDoiScalar(String doi); /** * Bibliographic reference data in EndNote format. *

* Type: NX_CHAR *

* * @return the value. */ public IDataset getEndnote(); /** * Bibliographic reference data in EndNote format. *

* Type: NX_CHAR *

* * @param endnote the endnote */ public DataNode setEndnote(IDataset endnote); /** * Bibliographic reference data in EndNote format. *

* Type: NX_CHAR *

* * @return the value. */ public String getEndnoteScalar(); /** * Bibliographic reference data in EndNote format. *

* Type: NX_CHAR *

* * @param endnote the endnote */ public DataNode setEndnoteScalar(String endnote); /** * Bibliographic reference data in BibTeX format. *

* Type: NX_CHAR *

* * @return the value. */ public IDataset getBibtex(); /** * Bibliographic reference data in BibTeX format. *

* Type: NX_CHAR *

* * @param bibtex the bibtex */ public DataNode setBibtex(IDataset bibtex); /** * Bibliographic reference data in BibTeX format. *

* Type: NX_CHAR *

* * @return the value. */ public String getBibtexScalar(); /** * Bibliographic reference data in BibTeX format. *

* Type: NX_CHAR *

* * @param bibtex the bibtex */ public DataNode setBibtexScalar(String bibtex); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy