Lines Matching refs:kind

372     public static XTextContent createIndex(XTextDocument xTextDoc, String kind)  in createIndex()  argument
378 Object oInt = oDocMSF.createInstance(kind); in createIndex()
420 public XShape createShape(XComponent oDoc, int height, int width, int x, int y, String kind) { in createShape() argument
423 ShapeDsc sDsc = new ShapeDsc(height, width, x, y, kind); in createShape()
435 public XDiagram createDiagram(XComponent oDoc, String kind) { in createDiagram() argument
443 oInterface = (XInterface) oDocMSF.createInstance("com.sun.star.chart." + kind); in createDiagram()
447 System.out.println("Couldn't create " + kind + "-Diagram " + e); in createDiagram()
455 public XInterface createControl(XComponent oDoc, String kind) { in createControl() argument
462 oControl = (XInterface) oDocMSF.createInstance("com.sun.star.form.component." + kind); in createControl()
465 System.out.println("Couldn't create instance " + kind + ": " + e); in createControl()
473 public Object createInstance(XComponent oDoc, String kind) { in createInstance() argument
480 oInstance = (Object) oDocMSF.createInstance(kind); in createInstance()
483 System.out.println("Couldn't create instance " + kind + ": " + e); in createInstance()
488 …ontrolShape createControlShape(XComponent oDoc, int height, int width, int x, int y, String kind) { in createControlShape() argument
500 Object aCon = oDocMSF.createInstance("com.sun.star.form.component." + kind); in createControlShape()
566 public XComponent openDoc(String kind, String frameName) in openDoc() argument
573 if (kind.equals("simpress")) { in openDoc()
589 … XComponent oDoc = oCLoader.loadComponentFromURL("private:factory/" + kind, frameName, 40, Args); in openDoc()
596 public XComponent openDoc(String kind, String frameName, PropertyValue[] mediaDescriptor) in openDoc() argument
606 "private:factory/" + kind, frameName, 40, mediaDescriptor); in openDoc()