?? frame.java
字號:
package sjg.animation;import java.awt.*;import java.awt.image.*;/** * Represents a single image in an {@link Animation animation}. * * <p>Frames are created by {@link Cropper Cropper}. * * @author Christian Hvid */public class Frame { private Image image; private String name; private int width; private int height; public int getWidth() { return width; } public int getHeight() { return height; } public Image getImage() { return image; } public String getName() { return name; } public Frame(String name, Image image, int width, int height) { this.name = name; this.image = image; this.width = width; this.height = height; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -