]> git.argeo.org Git - gpl/argeo-suite.git/blob - ol/VectorLayer.java
Prepare next development cycle
[gpl/argeo-suite.git] / 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 }