001package jmri.jmrit.signalsystemeditor; 002 003/** 004 * An image type 005 * 006 * @author Daniel Bergqvist (C) 2022 007 */ 008public class ImageType { 009 010 private String _type; 011 012 public ImageType(String type) { 013 this._type = type; 014 } 015 016 public void setType(String type) { 017 this._type = type; 018 } 019 020 public String getType() { 021 return this._type; 022 } 023 024}