]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.app.geo/src/org/argeo/app/ol/VectorLayer.java
Trim single line text input in forms
[gpl/argeo-suite.git] / org.argeo.app.geo / src / org / argeo / app / ol / VectorLayer.java
1 package org.argeo.app.ol;
2
3 public class VectorLayer extends Layer {
4 public VectorLayer(Object... args) {
5 super(args);
6 }
7
8 public VectorLayer(String name, Source source) {
9 this(source);
10 setName(name);
11 }
12
13 public VectorLayer(Source source) {
14 setSource(source);
15 }
16 }