001/*-
002 * Copyright 2014, 2016 Diamond Light Source Ltd.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 */
009
010package org.eclipse.january;
011
012/**
013 * Simple interface to provide a data object with a name.
014 */
015public interface INameable {
016
017        /**
018         * @return the name
019         */
020        public String getName();
021
022        /**
023         * @param name to use
024         */
025        public void setName(String name);
026
027}