51 lines
1.3 KiB
Java
51 lines
1.3 KiB
Java
/*
|
|
* 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
|
|
*/
|