
wicket.contrib.tinymce.image.ImageFileDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-tinymce Show documentation
Show all versions of wicketstuff-tinymce Show documentation
Adds support for WYSIWYG editing (using TinyMce) to Wicket
package wicket.contrib.tinymce.image;
import java.io.Serializable;
/**
* Simple POJO which represents image characteristics.
*
* @author Michal Letynski
*/
public class ImageFileDescription implements Serializable
{
private static final long serialVersionUID = -8438138774598689747L;
/** Image name */
private String name;
/** Image content type */
private String contentType;
public ImageFileDescription(String pName)
{
name = pName;
}
public String getName()
{
return name;
}
public void setName(String pName)
{
name = pName;
}
public String getContentType()
{
return contentType;
}
public void setContentType(String pContentType)
{
contentType = pContentType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy