001package armyc2.c5isr.renderer.utilities; 002 003public class SettingsChangedEvent { 004 005 static public final String EventType_CacheSizeChanged = "CACHE_CHANGED"; 006 static public final String EventType_CacheToggled = "CACHE_TOGGLED"; 007 static public final String EventType_FontChanged = "FONT_CHANGED"; 008 009 static public final String EventType_MPFontChanged = "MP_FONT_CHANGED"; 010 011 private String _EventType = null; 012 public SettingsChangedEvent(String eventType) 013 { 014 if(eventType != null && eventType.equals("") == false) 015 { 016 _EventType = eventType; 017 } 018 } 019 020 public String getEventType() 021 { 022 return _EventType; 023 } 024 025}