]> git.argeo.org Git - gpl/argeo-suite.git/blob - ux/JsImplementation.java
Prepare next development cycle
[gpl/argeo-suite.git] / ux / JsImplementation.java
1 package org.argeo.app.geo.ux;
2
3 /** Known JavaScript implementations for this package. */
4 public enum JsImplementation {
5 OPENLAYERS_MAP_PART("globalThis.argeo.app.geo.OpenLayersMapPart");
6
7 private String jsClass;
8
9 JsImplementation(String jsClass) {
10 this.jsClass = jsClass;
11 }
12
13 public String getJsClass() {
14 return jsClass;
15 }
16 }