Files
mimis/java/src/javazoom/jlgui/player/amp/skin/ActiveFont.java
2011-02-18 16:03:38 +00:00

89 lines
2.1 KiB
Java

/*
* ActiveFont.
*
* JavaZOOM : jlgui@javazoom.net
* http://www.javazoom.net
*
*-----------------------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*----------------------------------------------------------------------
*/
package javazoom.jlgui.player.amp.skin;
import java.awt.Image;
public class ActiveFont
{
private Image image = null;
private String index = null;
private int width = -1;
private int height = -1;
public ActiveFont()
{
super();
}
public ActiveFont(Image image, String index, int width, int height)
{
super();
this.image=image;
this.index=index;
this.width=width;
this.height=height;
}
public int getHeight()
{
return height;
}
public void setHeight(int height)
{
this.height = height;
}
public Image getImage()
{
return image;
}
public void setImage(Image image)
{
this.image = image;
}
public String getIndex()
{
return index;
}
public void setIndex(String index)
{
this.index = index;
}
public int getWidth()
{
return width;
}
public void setWidth(int width)
{
this.width = width;
}
}