类java.awt.desktop.PrintFilesHandler源码实例Demo

下面列出了怎么用java.awt.desktop.PrintFilesHandler的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: openjdk-jdk9   文件: _AppEventHandler.java
void performUsing(final PrintFilesHandler handler, final _NativeEvent event) {
    // create file list from fileNames
    final List<String> fileNameList = event.get(0);
    final ArrayList<File> files = new ArrayList<File>(fileNameList.size());
    for (final String fileName : fileNameList) files.add(new File(fileName));

    handler.printFiles(new PrintFilesEvent(files));
}
 
源代码2 项目: Bytecoder   文件: Desktop.java
/**
 * Installs the handler which is notified when the application is asked to
 * print a list of files.
 *
 * @implNote Please note that for macOS, notifications
 * are only sent if the Java app is a bundled application,
 * with a {@code CFBundleDocumentTypes} array present in its
 * {@code Info.plist}. Check the
 * <a href="https://developer.apple.com/documentation">
 * Apple Developer Documentation</a> for more information about
 * {@code Info.plist}.
 *
 * @param printFileHandler handler
 * @throws SecurityException if a security manager exists and its
 * {@link java.lang.SecurityManager#checkPrintJobAccess()} method denies
 * the permission to print or it denies the
 * {@code RuntimePermission("canProcessApplicationEvents")} permission
 * @throws UnsupportedOperationException if the current platform
 * does not support the {@link Desktop.Action#APP_PRINT_FILE} action
 * @since 9
 */
public void setPrintFileHandler(final PrintFilesHandler printFileHandler) {
    checkEventsProcessingPermission();
    SecurityManager sm = System.getSecurityManager();
    if (sm != null) {
        sm.checkPrintJobAccess();
    }
    checkActionSupport(Action.APP_PRINT_FILE);
    peer.setPrintFileHandler(printFileHandler);
}
 
源代码3 项目: openjdk-jdk9   文件: Desktop.java
/**
 * Installs the handler which is notified when the application is asked to
 * print a list of files.
 *
 * @implNote Please note that for Mac OS, notifications
 * are only sent if the Java app is a bundled application,
 * with a {@code CFBundleDocumentTypes} array present in its
 * Info.plist. See the
 * <a href="http://developer.apple.com/mac/library/documentation/General/Reference/InfoPlistKeyReference">
 * Info.plist Key Reference</a> for more information about adding a
 * {@code CFBundleDocumentTypes} key to your app's Info.plist.
 *
 * @param printFileHandler handler
 * @throws SecurityException if a security manager exists and its
 * {@link java.lang.SecurityManager#checkPrintJobAccess()} method denies
 * the permission to print or it denies the
 * {@code RuntimePermission("canProcessApplicationEvents")} permission
 * @throws UnsupportedOperationException if the current platform
 * does not support the {@link Desktop.Action#APP_PRINT_FILE} action
 * @since 9
 */
public void setPrintFileHandler(final PrintFilesHandler printFileHandler) {
    checkEventsProcessingPermission();
    SecurityManager sm = System.getSecurityManager();
    if (sm != null) {
        sm.checkPrintJobAccess();
    }
    checkActionSupport(Action.APP_PRINT_FILE);
    peer.setPrintFileHandler(printFileHandler);
}
 
源代码4 项目: Bytecoder   文件: DesktopPeer.java
/**
 * Installs the handler which is notified when the application is asked to
 * print a list of files.
 *
 * @param printFileHandler handler
 */
default void setPrintFileHandler(final PrintFilesHandler printFileHandler) {
}
 
源代码5 项目: openjdk-jdk9   文件: DesktopPeer.java
/**
 * Installs the handler which is notified when the application is asked to
 * print a list of files.
 *
 * @param printFileHandler handler
 */
default void setPrintFileHandler(final PrintFilesHandler printFileHandler) {
}
 
源代码6 项目: openjdk-jdk9   文件: Application.java
/**
 * Installs the handler which is notified when the application is asked to print a list of files.
 * The {@link PrintFilesHandler#printFiles(PrintFilesEvent)} notifications are only sent if the Java app is a bundled application, with a {@code CFBundleDocumentTypes} array present in it's Info.plist.
 * See the <a href="http://developer.apple.com/mac/library/documentation/General/Reference/InfoPlistKeyReference">Info.plist Key Reference</a> for more information about adding a {@code CFBundleDocumentTypes} key to your app's Info.plist.
 *
 * @param printFileHandler
 * @since Java for Mac OS X 10.6 Update 3
 * @since Java for Mac OS X 10.5 Update 8
 */
public void setPrintFileHandler(final PrintFilesHandler printFileHandler) {
    eventHandler.printFilesDispatcher.setHandler(printFileHandler);
}
 
 类所在包
 类方法
 同包方法