Comments added to ImageStorage.java
This commit is contained in:
parent
c7cd02abda
commit
2404f55bdf
@ -8,10 +8,20 @@ import java.io.IOException;
|
|||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A képek számontartására szolgáló osztály.
|
||||||
|
*/
|
||||||
public class ImageStorage {
|
public class ImageStorage {
|
||||||
|
/**
|
||||||
|
* <code>Map</code>, amely a képek mellé tárolja a nevüket.
|
||||||
|
*/
|
||||||
private Map<String, BufferedImage> images;
|
private Map<String, BufferedImage> images;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Az osztály konstruktora. Betölti a szükséges képeket.
|
||||||
|
*
|
||||||
|
* @throws IOException Ha nem találhatóak a képek.
|
||||||
|
*/
|
||||||
public ImageStorage() throws IOException {
|
public ImageStorage() throws IOException {
|
||||||
images = new HashMap<>();
|
images = new HashMap<>();
|
||||||
|
|
||||||
@ -25,6 +35,12 @@ public class ImageStorage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Visszatér a kapott nevű képpel.
|
||||||
|
*
|
||||||
|
* @param filename a kapott név
|
||||||
|
* @return a kapott nevű kép
|
||||||
|
*/
|
||||||
public BufferedImage getImage(String filename) {
|
public BufferedImage getImage(String filename) {
|
||||||
return images.get(filename);
|
return images.get(filename);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user