From 63ea2492d1b7676d5aae7c9dd7912ca78159c321 Mon Sep 17 00:00:00 2001 From: dakkar Date: Sat, 26 Mar 2011 13:44:35 +0000 Subject: many more BrowserObjects --- lib/DeWeave/Collection/Forms.pm | 8 ++++++++ lib/DeWeave/Collection/History.pm | 8 ++++++++ lib/DeWeave/Collection/Passwords.pm | 8 ++++++++ lib/DeWeave/Collection/Prefs.pm | 8 ++++++++ lib/DeWeave/Collection/Tabs.pm | 8 ++++++++ 5 files changed, 40 insertions(+) create mode 100644 lib/DeWeave/Collection/Forms.pm create mode 100644 lib/DeWeave/Collection/History.pm create mode 100644 lib/DeWeave/Collection/Passwords.pm create mode 100644 lib/DeWeave/Collection/Prefs.pm create mode 100644 lib/DeWeave/Collection/Tabs.pm (limited to 'lib/DeWeave/Collection') diff --git a/lib/DeWeave/Collection/Forms.pm b/lib/DeWeave/Collection/Forms.pm new file mode 100644 index 0000000..9168085 --- /dev/null +++ b/lib/DeWeave/Collection/Forms.pm @@ -0,0 +1,8 @@ +package DeWeave::Collection::Forms; +use Moose; +use namespace::autoclean; +use DeWeave::BO::Form; + +extends 'DeWeave::Collection'; + +1; diff --git a/lib/DeWeave/Collection/History.pm b/lib/DeWeave/Collection/History.pm new file mode 100644 index 0000000..4bd4814 --- /dev/null +++ b/lib/DeWeave/Collection/History.pm @@ -0,0 +1,8 @@ +package DeWeave::Collection::History; +use Moose; +use namespace::autoclean; +use DeWeave::BO::History; + +extends 'DeWeave::Collection'; + +1; diff --git a/lib/DeWeave/Collection/Passwords.pm b/lib/DeWeave/Collection/Passwords.pm new file mode 100644 index 0000000..6361dbd --- /dev/null +++ b/lib/DeWeave/Collection/Passwords.pm @@ -0,0 +1,8 @@ +package DeWeave::Collection::Passwords; +use Moose; +use namespace::autoclean; +use DeWeave::BO::Password; + +extends 'DeWeave::Collection'; + +1; diff --git a/lib/DeWeave/Collection/Prefs.pm b/lib/DeWeave/Collection/Prefs.pm new file mode 100644 index 0000000..3b5d3e5 --- /dev/null +++ b/lib/DeWeave/Collection/Prefs.pm @@ -0,0 +1,8 @@ +package DeWeave::Collection::Prefs; +use Moose; +use namespace::autoclean; +use DeWeave::BO::Pref; + +extends 'DeWeave::Collection'; + +1; diff --git a/lib/DeWeave/Collection/Tabs.pm b/lib/DeWeave/Collection/Tabs.pm new file mode 100644 index 0000000..fe6b5b9 --- /dev/null +++ b/lib/DeWeave/Collection/Tabs.pm @@ -0,0 +1,8 @@ +package DeWeave::Collection::Tabs; +use Moose; +use namespace::autoclean; +use DeWeave::BO::Tab; + +extends 'DeWeave::Collection'; + +1; -- cgit v1.2.3