blob: 0a1d9f1fc684c643c0dccc310c48fe8846371932 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Boeing.
* 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
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.util;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Donald G. Dunne
*/
@XmlRootElement
public class DynamicImages {
public List<DynamicImage> images = new ArrayList<>();
public List<DynamicImage> getImages() {
return images;
}
}