UDK 3.1.0 Java API Reference

com.sun.star.tools.uno
クラス UnoApp

java.lang.Object
  |
  +--java.awt.Component
        |
        +--java.awt.Container
              |
              +--java.awt.Panel
                    |
                    +--java.applet.Applet
                          |
                          +--com.sun.star.tools.uno.UnoApp
すべての実装インタフェース:
Accessible, ImageObserver, MenuContainer, Serializable

public class UnoApp
extends Applet

A command line tool. UnoApp is the generic UNO application for java. It removes the need for writing UNO applications in Java. That is, it instantiates a service and runs it if it implements com.sun.star.lang.XMain.
In a remote scenario it is used to intantiate services and makes them accessible via a network.

関連項目:
The Java Uno Application, 直列化された形式

フィールドの概要
static boolean DEBUG
           
 
クラス java.awt.Component から継承したフィールド
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
 
インタフェース java.awt.image.ImageObserver から継承したフィールド
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
 
コンストラクタの概要
UnoApp()
           
 
メソッドの概要
static XMultiServiceFactory createSimpleServiceManager()
          Bootstraps a servicemanager with some base components registered.
 void destroy()
           
static void export(XMultiServiceFactory xMultiServiceFactory, String dcp, Object object, boolean singleAccept)
          Exports the given object via the given url while using the xMultiServiceFactory.
 void init()
          Calls the main method.
static void main(String[] args)
          The is the main method, which is called from java.
 void start()
           
 void stop()
           
 
クラス java.applet.Applet から継承したメソッド
getAccessibleContext, getAppletContext, getAppletInfo, getAudioClip, getAudioClip, getCodeBase, getDocumentBase, getImage, getImage, getLocale, getParameter, getParameterInfo, isActive, newAudioClip, play, play, resize, resize, setStub, showStatus
 
クラス java.awt.Panel から継承したメソッド
addNotify
 
クラス java.awt.Container から継承したメソッド
add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getInsets, getLayout, getListeners, getMaximumSize, getMinimumSize, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paint, paintComponents, paramString, preferredSize, print, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, removeNotify, setFocusCycleRoot, setFocusTraversalKeys, setFocusTraversalPolicy, setFont, setLayout, transferFocusBackward, transferFocusDownCycle, update, validate, validateTree
 
クラス java.awt.Component から継承したメソッド
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, contains, createImage, createImage, createVolatileImage, createVolatileImage, disable, disableEvents, dispatchEvent, enable, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphics, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocation, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getToolkit, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isOpaque, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, printAll, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processKeyEvent, processMouseEvent, processMouseMotionEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, repaint, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, reshape, setBackground, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFocusable, setFocusTraversalKeysEnabled, setForeground, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, setVisible, show, show, size, toString, transferFocus, transferFocusUpCycle
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

DEBUG

public static final boolean DEBUG
関連項目:
定数フィールド値
コンストラクタの詳細

UnoApp

public UnoApp()
メソッドの詳細

createSimpleServiceManager

public static XMultiServiceFactory createSimpleServiceManager()
                                                       throws Exception
Bootstraps a servicemanager with some base components registered.

戻り値:
a freshly boostrapped service manager
Exception
関連項目:
com.sun.star.lang.ServiceManager

export

public static void export(XMultiServiceFactory xMultiServiceFactory,
                          String dcp,
                          Object object,
                          boolean singleAccept)
                   throws Exception
Exports the given object via the given url while using the xMultiServiceFactory.

パラメータ:
xMultiServiceFactory - the service manager to use
dcp - a uno url, which describes how to export
object - the object to export
Exception
関連項目:
XBridge, XBridgeFactory, XInstanceProvider

main

public static void main(String[] args)
                 throws Exception
The is the main method, which is called from java.

Exception

init

public void init()
Calls the main method. The parameter of the applet are passed as arguments to the main method.

オーバーライド:
クラス Applet 内の init

start

public void start()
オーバーライド:
クラス Applet 内の start

stop

public void stop()
オーバーライド:
クラス Applet 内の stop

destroy

public void destroy()
オーバーライド:
クラス Applet 内の destroy

UDK 3.1.0 Java API Reference