package com.best.up.testjavadbus; import java.util.ArrayList; import org.freedesktop.dbus.MethodCall; import org.freedesktop.dbus.exceptions.DBusException; public class Launch { public class AStruct extends org.freedesktop.dbus.types.DBusStructType { public AStruct() { super( String.class, String.class, String.class ); } } /** * @param args * @throws DBusException */ public static void main(String[] args) throws DBusException { new MethodCall ( "" // String dest , "" // String path , "" // String iface , "" // String member , (byte)0 // byte flags , "a(sss)"// String sig , new ArrayList() // Object... arg ); } }