/* * JavaXYQ Engine * * javaxyq@2008 all rights. * http://www.javaxyq.com */ package com.javaxyq.config; /** * @author ����ΰ * @history 2008-6-7 ����ΰ �½� */ public class ImageConfig implements Config { private String id; private String path; private int x; private int y; private int width; private int height; public ImageConfig(String path) { this.path = path; } public String getType() { return "image"; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public String getId() { return id; } public void setId(String id) { this.id = id; } }