git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7127 75d07b2b-3a1a-0410-a2c5-0572b91ccdca3.0
parent
2fc2623e97
commit
59ad3b71b9
@ -1,3 +1,3 @@ |
||||
javac.source=1.5 |
||||
javac.compilerargs=-Xlint -Xlint:-serial |
||||
spec.version.base=0.1.0 |
||||
spec.version.base=0.6.0 |
||||
|
@ -0,0 +1,55 @@ |
||||
/* |
||||
* To change this template, choose Tools | Templates |
||||
* and open the template in the editor. |
||||
*/ |
||||
|
||||
package com.jme3.gde.angelfont; |
||||
|
||||
import java.awt.image.BufferedImage; |
||||
|
||||
/** |
||||
* |
||||
* @author normenhansen |
||||
*/ |
||||
public class AngelFont { |
||||
private BufferedImage image; |
||||
private String description; |
||||
|
||||
public AngelFont() { |
||||
} |
||||
|
||||
public AngelFont(BufferedImage image, String description) { |
||||
this.image = image; |
||||
this.description = description; |
||||
} |
||||
|
||||
/** |
||||
* @return the image |
||||
*/ |
||||
public BufferedImage getImage() { |
||||
return image; |
||||
} |
||||
|
||||
/** |
||||
* @param image the image to set |
||||
*/ |
||||
public void setImage(BufferedImage image) { |
||||
this.image = image; |
||||
} |
||||
|
||||
/** |
||||
* @return the description |
||||
*/ |
||||
public String getDescription() { |
||||
return description; |
||||
} |
||||
|
||||
/** |
||||
* @param description the description to set |
||||
*/ |
||||
public void setDescription(String description) { |
||||
this.description = description; |
||||
} |
||||
|
||||
|
||||
} |
@ -1,7 +1,10 @@ |
||||
OpenIDE-Module-Display-Category=jMonkeyPlatform |
||||
OpenIDE-Module-Long-Description=\ |
||||
Font Support for jMonkeyPlatform, create AngelFont files from system fonts |
||||
OpenIDE-Module-Name=jME3 Font Creator |
||||
OpenIDE-Module-Name=Font Creator |
||||
OpenIDE-Module-Short-Description=Create AngelFont files from system fonts |
||||
Templates/GUI/angelFont=Font |
||||
AngelFontVisualPanel1.jLabel1.text= |
||||
AngelFontVisualPanel2.jLabel1.text=Font Size: |
||||
AngelFontVisualPanel2.jLabel2.text=Image Size: |
||||
AngelFontVisualPanel2.jLabel3.text=jLabel3 |
||||
|
Loading…
Reference in new issue