multiwindow.java
来自「Java生成PDF Java生成PDF Java生成PDF」· Java 代码 · 共 26 行
JAVA
26 行
// $Id: MultiWindow.java,v 1.6 2007/09/12 10:04:59 mike Exp $package org.faceless.pdf2.viewer2.feature;import org.faceless.pdf2.viewer2.*;/** * A special feature to enable internal frames inside the viewer. Without this feature, * a {@link PDFViewer} will only be able to display one PDF at a time. * The name of this feature is "MultiWindow". * <p><i>This code is copyright the Big Faceless Organization. You're welcome to use, modify and distribute it in any form in your own projects, provided those projects continue to make use of the Big Faceless PDF library.</i></p> * @since 2.8 */public final class MultiWindow extends ViewerFeature{ private static MultiWindow instance; public static ViewerFeature getInstance() { if (instance==null) instance = new MultiWindow(); return instance; } private MultiWindow() { super("MultiWindow"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?