📄 magickinfo.java
字号:
package magick;/** * Encapsulation of the MagickInfo structure. * * @author Susan Dorr */public class MagickInfo extends Magick { // Internal handle. Used as pointer to MagickInfo // structure in memory. We use long (64-bits) for // portibility. private long magickInfoHandle = 0; /** * Constructor. */ public MagickInfo(String name) throws MagickException { init(name); } /** * Automated destructor. */ public void finalize() { destroyMagickInfo(); } /** * Initialise the MagickInfo structure. */ public native void init(String name) throws MagickException; /** * Deallocate the MagickInfo structure. */ private native void destroyMagickInfo(); /** * Return the description attribute of the handle. */ public native String getDescription() throws MagickException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -