/usr/share/idl/bonobo-2.0/Bonobo_ItemContainer.idl is in libbonobo2-common 2.24.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /*
* bonobo-item-container.idl: Implements a generic container for objects
*
* Copyright (C) 2000 Helix Code, Inc.
*
* Author:
* Miguel de Icaza (miguel@helixcode.com)
*/
#ifndef BONOBO_ITEM_CONTAIER_IDL
#define BONOBO_ITEM_CONTAIER_IDL
#include "Bonobo_Unknown.idl"
module Bonobo {
interface ItemContainer : Unknown {
typedef sequence<string> ObjectNames;
/**
* enumObjects:
*
* Returns: a list of names of contained objects
*/
ObjectNames enumObjects ();
/**
* NotFound{}:
*
* This exception is raised if the specified name could not
* be found
*/
exception NotFound {};
/**
* SyntaxError{}:
*
* This exception is launched if there is a syntax error
* during the name parsing
*/
exception SyntaxError {};
/**
* getObjectByName:
* @item_name: Item name to bind to
* @only_if_exists: if TRUE, only bind if this object currently exists
* otherwise, it will try to create the server for it.
*/
Unknown getObjectByName (in string item_name,
in boolean only_if_exists)
raises (SyntaxError, NotFound);
void unImplemented1 ();
void unImplemented2 ();
void unImplemented3 ();
void unImplemented4 ();
};
};
#endif /* BONOBO_ITEM_CONTAIER_IDL */
|