Package com.sun.star.frame

Examples of com.sun.star.frame.ControlCommand


            if (editFieldListener!=null && !fieldText.equals(text)){
                NamedValue[] nv = new NamedValue[1];
                nv[0] = new NamedValue();
                nv[0].Name = "Text";
                nv[0].Value = text;
                ControlCommand cc = new ControlCommand();
                cc.Command = "SetText";
                cc.Arguments = nv;
                /* send dispatch to frame */
                XMultiComponentFactory xServiceManager = m_xContext.getServiceManager();
                XURLTransformer xParser = (XURLTransformer) UnoRuntime.queryInterface(
View Full Code Here

TOP

Related Classes of com.sun.star.frame.ControlCommand

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.