Added javadoc
This commit is contained in:
parent
336d9626e1
commit
3ac1042894
10 changed files with 188 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue