Initial, semiworking checkin of Java Bridge work.
git-svn-id: svn://10.0.0.236/trunk@43123 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
50
mozilla/java/xpcom/test/JSIComplex.java
Normal file
50
mozilla/java/xpcom/test/JSIComplex.java
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* The contents of this file are subject to the Mozilla Public License
|
||||
* Version 1.0 (the "License"); you may not use this file except
|
||||
* in compliance with the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
||||
* the specific language governing rights and limitations under the License.
|
||||
*
|
||||
* Contributors:
|
||||
* Frank Mitchell (frank.mitchell@sun.com)
|
||||
*/
|
||||
/*
|
||||
* ************* DO NOT EDIT THIS FILE ***********
|
||||
*
|
||||
* This file was automatically generated from JSISample.idl.
|
||||
*/
|
||||
package org.mozilla.xpcom;
|
||||
|
||||
import org.mozilla.xpcom.nsISupports;
|
||||
import org.mozilla.xpcom.nsID;
|
||||
|
||||
/*
|
||||
* Interface JSIComplex
|
||||
*
|
||||
* IID: 0x57ecad91-ae1a-11d1-b66c-00805f8a2676
|
||||
*/
|
||||
|
||||
public interface JSIComplex extends nsISupports
|
||||
{
|
||||
public static final String JSICOMPLEX_IID_STRING =
|
||||
"57ecad91-ae1a-11d1-b66c-00805f8a2676";
|
||||
|
||||
public static final nsID JSICOMPLEX_IID =
|
||||
new nsID("57ecad91-ae1a-11d1-b66c-00805f8a2676");
|
||||
|
||||
/* attribute long real; */
|
||||
public int getReal();
|
||||
public void setReal(int value);
|
||||
|
||||
/* attribute long imaginary; */
|
||||
public int getImaginary();
|
||||
public void setImaginary(int value);
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* end
|
||||
*/
|
||||
Reference in New Issue
Block a user