plugin 0.2.0+3 copy "plugin: ^0.2.0+3" to clipboard
plugin: ^0.2.0+3 copied to clipboard

discontinued

Support for building plugins.

plugin #

Support for building plugins in Dart.

This project defines a simple framework for defining plugins. A plugin is the unit of extensibility for a host application.

An extension point represents one way of extending the host application. For example, a file viewer application might define an extension point to allow viewers for new file types to be added to the application.

The host application must provide at least one extension point that plugins can extend. Every extension point must have a unique name associated with it, and should specify the type of the objects that will be accepted as extensions. In the example above, the extension point might require that all extensions implement the interface FileViewer.

Any plugin can define extension points that other plugins can extend. The host application contributes its own extension point(s) by defining a plugin.

An extension is an object that a plugin associates with a particular extension point. To continue the example, a plugin that supports the viewing of .gif files would create an instance of GifFileViewer, a class that implements FileViewer.

The framework in this package then connects the defined extensions with the defined extension points so that the separately contributed plugins can coordinate to accomplish the larger goal.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

0
likes
20
pub points
87%
popularity

Publisher

unverified uploader

Support for building plugins.

Repository (GitHub)
View/report issues
Contributing

License

BSD-3-Clause (LICENSE)

More

Packages that depend on plugin