001package jmri.jmrit.operations.logixng; 002 003import jmri.jmrit.logixng.LogixNG_Category; 004 005/** 006 * Defines the category Operations 007 * 008 * @author Daniel Bergqvist Copyright 2025 009 */ 010public final class CategoryOperations extends LogixNG_Category { 011 012 /** 013 * A item on the layout, for example turnout, sensor and signal mast. 014 */ 015 public static final CategoryOperations OPERATIONS = new CategoryOperations(); 016 017 018 public CategoryOperations() { 019 super("OPERATIONS", Bundle.getMessage("CategoryOperations"), 300); 020 } 021 022 public static void registerCategory() { 023 LogixNG_Category.registerCategory(OPERATIONS); 024 } 025 026}