001package apps.gui3.tabbedpreferences; 002 003/** 004 * Tabbed Preferences Action for going direct to Profiles. 005 *<p> 006 * Most of the behavior comes from the {@link TabbedPreferencesAction} superclass; 007 * this just adds a specific target. 008 * 009 * @author Bob Jacobsen (C) 2014, 2019 010 */ 011public class TabbedPreferencesProfileAction extends TabbedPreferencesAction { 012 013 public TabbedPreferencesProfileAction() { 014 super(Bundle.getMessage("MenuItemPreferencesProfile")); 015 preferencesItem = "Profiles"; 016 } 017 018}