This commit is contained in:
timeless%mozdev.org 2006-09-10 09:50:13 +00:00
Родитель 0e39669065
Коммит c613ed129a
1 изменённых файлов: 38 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,38 @@
/* ***** BEGIN LICENSE BLOCK *****
* ***** END LICENSE BLOCK ***** */
package org.bugzilla.landfill.mxr;
import java.io.*;
/**
* <p>
* This interface is similar to <code>nsISupports</code>.
* </p>
*
* @see Mozilla#initEmbedding
* @see Mozilla#initXPCOM
* @see <a href=
* "http://lxr.mozilla.org/mozilla/source/xpcom/io/nsISupports.idl">
* nsISupports </a>
*/
public interface IMXRTestSupports {
/**
* Blah
*
* @param interface_id the interface
* @param out_result this is the result
*
* The following is gibberish for testing mxr's cross reference
* <ul>
* <li><code>true</code> - ...
* </li>
* <li><code>false</code> - ... </li>
* </ul>
*/
void QueryInterface(nsid interface_id, [out,QIResult] out_result);
}