package dataHolderPackage;
import java.awt.Graphics;


public abstract class PhotoType {
	private String url = "";
	private String width = "";
	private String height = "";
	
	
	public void setUrl(String url) {
		this.url = url;
	}
	public String getUrl() {
		return url;
	}
	public void setWidth(String widht) {
		this.width = widht;
	}
	public String getWidth() {
		return width;
	}
	public void setHeight(String height) {
		this.height = height;
	}
	public String getHeight() {
		return height;
	}
	
	//For compiling the data we need per image
	public abstract org.jdom.Element renderImage();
}
