com.vaadin.flow.component.map.configuration.source.ImageSource Maven / Gradle / Ivy
package com.vaadin.flow.component.map.configuration.source;
/*
* #%L
* Vaadin Map
* %%
* Copyright (C) 2022 - 2022 Vaadin Ltd
* %%
* This program is available under Commercial Vaadin Developer License
* 4.0 (CVDLv4).
*
* See the file license.html distributed with this software for more
* information about licensing.
*
* For the full License, see .
* #L%
*/
/**
* Abstract base class for all sources providing a single image
*/
public abstract class ImageSource extends Source {
public ImageSource(BaseOptions> options) {
super(options);
}
public static abstract class BaseOptions>
extends Source.BaseOptions {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy