]> git.argeo.org Git - gpl/argeo-suite.git/blob - SuiteEvent.java
7d9bca73cc0e3ff086e43b3647b62d4e93ed83d6
[gpl/argeo-suite.git] / SuiteEvent.java
1 package org.argeo.suite.ui;
2
3 /** Events specific to Argeo Suite. */
4 public enum SuiteEvent {
5 switchLayer;
6
7 public final static String LAYER_PARAM = "layer";
8
9 String topic() {
10 return getTopicBase() + "/" + name();
11 }
12
13 String getTopicBase() {
14 return "argeo/suite/ui";
15 }
16
17 }