001package jmri.jmrix.loconet.loconetovertcp; 002 003import jmri.util.startup.AbstractStartupActionFactory; 004import jmri.util.startup.StartupActionFactory; 005import java.util.Locale; 006import org.openide.util.lookup.ServiceProvider; 007 008/** 009 * {@link jmri.util.startup.StartupActionFactory} for the 010 * {@link jmri.jmrix.loconet.loconetovertcp.LnTcpServerAction}. 011 * 012 * @author Randall Wood Copyright (C) 2017 013 */ 014@ServiceProvider(service = StartupActionFactory.class) 015public final class LnTcpStartupActionFactory extends AbstractStartupActionFactory { 016 017 @Override 018 public String getTitle(Class<?> clazz, Locale locale) throws IllegalArgumentException { 019 if (clazz.equals(LnTcpServerAction.class)) { 020 return Bundle.getMessage(locale, "StartServerAction"); // NOI18N 021 } 022 throw new IllegalArgumentException(clazz.getName() + " is not supported by " + this.getClass().getName()); 023 } 024 025 @Override 026 public Class<?>[] getActionClasses() { 027 return new Class<?>[]{LnTcpServerAction.class}; 028 } 029 030} 031