/* * ************* DO NOT EDIT THIS FILE *********** * * This file was automatically generated from iJ2XINServerTestComponent.idl. */ package org.mozilla.xpcom; /** * Interface iJ2XINServerTestComponent * * IID: 0x3b0e2d20-9852-11d4-aa22-00a024a8bbac */ public interface iJ2XINServerTestComponent extends nsISupports { public static final IID IID = new IID("3b0e2d20-9852-11d4-aa22-00a024a8bbac"); /* void GetTestLocation (out string tLocation, out string lLocation); */ public void getTestLocation(String[] tLocation, String[] lLocation); /* void flush (in string s); */ public void flush(String s); /* void TestShort (in short i); */ public void testShort(short i); /* void TestLong (in long i); */ public void testLong(int i); /* void TestLonglong (in long long i); */ public void testLonglong(long i); /* void TestByte (in octet i); */ public void testByte(byte i); /* void TestUShort (in unsigned short i); */ public void testUShort(short i); /* void TestULong (in unsigned long i); */ public void testULong(int i); /* void TestULonglong (in unsigned long long i); */ public void testULonglong(long i); /* void TestFloat (in float i); */ public void testFloat(float i); /* void TestDouble (in double i); */ public void testDouble(double i); /* void TestBoolean (in boolean i); */ public void testBoolean(boolean i); /* void TestString (in string i); */ public void testString(String i); /* void TestWString (in wstring i); */ public void testWString(String i); /* void TestStringArray (in unsigned long count, [array, size_is (count)] in string valueArray); */ public void testStringArray(int count, String[] valueArray); /* void TestLongArray (in unsigned long count, [array, size_is (count)] in long longArray); */ public void testLongArray(int count, int[] longArray); /* void TestCharArray (in unsigned long count, [array, size_is (count)] in char valueArray); */ public void testCharArray(int count, char[] valueArray); /* void TestMixed (in boolean bBool, in octet nByte, in short nShort, in unsigned short nUShort, in long nLong, in unsigned long nULong, in long long nHyper, in unsigned long long nUHyper, in float fFloat, in double fDouble, in string aString, in unsigned long count, [array, size_is (count)] in long longArray); */ public void testMixed(boolean bBool, byte nByte, short nShort, short nUShort, int nLong, int nULong, long nHyper, long nUHyper, float fFloat, double fDouble, String aString, int count, int[] longArray); /* void TestObject (in iJ2XINServerTestComponent obj); */ public void testObject(iJ2XINServerTestComponent obj); /* string GetTestObjectString (); */ public String getTestObjectString(); /* void TestIID (in nsIIDRef iid); */ public void testIID(IID iid); /* void TestCID (in nsCIDRef cid); */ public void testCID(CID cid); } /* * end */