Package es.juanrak.svn.util.jna

Examples of es.juanrak.svn.util.jna.Shell32


         * @param ficheroRecibo
         *            Fichero a editar.
         * @return Proceso asociado a la aplicacion lanzada.
         */
        public int editar(File ficheroRecibo) throws Exception {
            Shell32 shell32Instancia = Shell32.INSTANCE;

            return shell32Instancia.ShellExecute(null, "open", ficheroRecibo.getAbsolutePath(), null, null, Shell32.SW_SHOWMAXIMIZED);
        }
View Full Code Here


         * @param ficheroRecibo
         *            Fichero a imprimir.
         * @return Proceso asociado a la aplicacion lanzada.
         */
        public int imprimir(File ficheroRecibo) throws Exception {
            Shell32 shell32Instancia = Shell32.INSTANCE;

            return shell32Instancia.ShellExecute(null, "print", ficheroRecibo.getAbsolutePath(), null, null, Shell32.SW_HIDE);
        }
View Full Code Here

TOP

Related Classes of es.juanrak.svn.util.jna.Shell32

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.