Added javadoc

This commit is contained in:
Stijn Bannink 2023-07-04 17:47:30 +02:00
parent 336d9626e1
commit 3ac1042894
10 changed files with 188 additions and 0 deletions

View file

@ -18,9 +18,17 @@
package tech.sbdevelopment.mapreflectionapi.api;
/**
* A {@link MapWrapper} wraps one image.
*/
public abstract class MapWrapper extends AbstractMapWrapper {
protected ArrayImage content;
/**
* Construct a new {@link MapWrapper}
*
* @param image The {@link ArrayImage} to wrap
*/
public MapWrapper(ArrayImage image) {
this.content = image;
}