I have seen people writing jQuery plugins in different styles. Some authors use a private methods object (within a closure) and invoke the method using methods[fn].call(this, args) style. There are other who create a new object of a private class, and invoke the method like this.fn(). Few other use ui.widget as the base for their plugin.
Which of these methods would you suggest for a plugin? I am not interested in using ui.widget, because it is an extra dependency, which can be avoided. Can anyone suggest some well written jQuery plugins, which will help me write better plugins.