ruby-****@sourc*****
ruby-****@sourc*****
2004年 3月 2日 (火) 05:51:54 JST
------------------------- REMOTE_ADDR = 217.117.55.140 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/?Gst%3A%3APlugin ------------------------- = class Gst::Plugin Dynamically loadable Elements + == Object Hierarchy + * Object + * GLib::Boxed + * Gst::Plugin == Instance Methods - --- == anOtherPlugin - Checks if two Gst::Plugin objects are refered by the same file. + --- ==(plugin) + This method returns true if two Gst::Plugin objects are refered by the same file, false otherwise. + * Returns: true if two Gst::Plugin objects are refered by the same file, false otherwise. - --- each_feature { |aPluginFeature| block } + --- each_feature { |plugin_feature| block } Calls the block for each feature this plugin provides, passing a reference to the Gst::PluginFeature object as parameter. - - Always returns nil. + * Returns: always nil. - --- features - Get a list of all the features that this plugin provides, in an array - of Gst::PluginFeature objects. + --- features + Gets a list of all the features that this plugin provides. + * Returns: an array of Gst::PluginFeature objects. - --- filename - Gets the file name where the plugin cames from, as a String. + --- filename + This method returns the file name where the plugin cames from. + * Returns: the file name where the plugin cames from. - --- loaded? - Checks if the plugin is loaded into memory. + --- loaded? + This method returns true if the plugin is loaded into memory, false otherwise. + * Returns: true if the plugin is loaded into memory, false otherwise. - --- longname - Gets long name (descriptive) of the plugin, as a String. + --- longname + This method returns the long name (descriptive) of the plugin. + * Returns: the long name (descriptive) of the plugin. - --- name - Gets (short) name of the plugin, as a String. + --- name + This method returns the (short) name of the plugin. + * Returns: the (short) name of the plugin. - + == See Also + ((<Gst>)). - ((<lrz>))