Add page container.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 9 Mar 2009 13:40:38 +0000 (14:40 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 9 Mar 2009 13:40:38 +0000 (14:40 +0100)
src/net/pterodactylus/arachne/core/Page.java [new file with mode: 0644]

diff --git a/src/net/pterodactylus/arachne/core/Page.java b/src/net/pterodactylus/arachne/core/Page.java
new file mode 100644 (file)
index 0000000..8c4ae44
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * © 2009 David ‘Bombe’ Roden
+ */
+package net.pterodactylus.arachne.core;
+
+/**
+ * Container for a page. A page consists of a {@link Site} and a path within the
+ * site.
+ *
+ * @author David ‘Bombe’ Roden <bombe@pterodactylus.net>
+ */
+public class Page {
+
+       /** The site of the page. */
+       private final Site site;
+
+       /** The path of the page. */
+       private final String path;
+
+       /**
+        * Creates a new page.
+        *
+        * @param site
+        *            The site of the page
+        * @param path
+        *            The path of the page
+        */
+       public Page(Site site, String path) {
+               this.site = site;
+               this.path = path;
+       }
+
+       /**
+        * Returns the site of the page.
+        *
+        * @return The page’s site
+        */
+       public Site getSite() {
+               return site;
+       }
+
+       /**
+        * Returns the path of the page within the site.
+        *
+        * @return The page’s path
+        */
+       public String getPath() {
+               return path;
+       }
+
+}