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

org.eclipse.dawnsci.nexus.NXreflections 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 java.util.Map;

/**
 * This is a definition for reflection data from diffraction experiments
 * 

Symbols:

    *
  • n * number of reflections
  • *
  • m * number of experiments

* */ public interface NXreflections extends NXobject { /** * * @return the value. */ public NXentry getEntry(); /** * * @param entry the entry */ public void setEntry(NXentry entry); /** * Get a NXentry node by name: *
    *
  • *
* * @param name the name of the node. * @return a map from node names to the NXentry for that node. */ public NXentry getEntry(String name); /** * Set a NXentry node by name: *
    *
  • *
* * @param name the name of the node * @param entry the value to set */ public void setEntry(String name, NXentry entry); /** * Get all NXentry nodes: *
    *
  • *
* * @return a map from node names to the NXentry for that node. */ public Map getAllEntry(); /** * Set multiple child nodes of a particular type. *
    *
  • *
* * @param entry the child nodes to add */ public void setAllEntry(Map entry); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy