From cee53b021632c95f1b4882664a31ca639a9b0700 Mon Sep 17 00:00:00 2001 From: Matt Windsor Date: Sun, 20 Mar 2011 16:38:51 +0000 Subject: Rewrite of server to use HttpCore example code; beginning of code reformat from GNU style to Java conventions. Code now includes Apache license code. --- doc/uk/org/ury/show/item/ShowItem.html | 278 +++++++++++++++ doc/uk/org/ury/show/item/ShowItemProperty.html | 382 +++++++++++++++++++++ doc/uk/org/ury/show/item/class-use/ShowItem.html | 224 ++++++++++++ .../ury/show/item/class-use/ShowItemProperty.html | 203 +++++++++++ doc/uk/org/ury/show/item/package-frame.html | 43 +++ doc/uk/org/ury/show/item/package-summary.html | 171 +++++++++ doc/uk/org/ury/show/item/package-tree.html | 165 +++++++++ doc/uk/org/ury/show/item/package-use.html | 189 ++++++++++ 8 files changed, 1655 insertions(+) create mode 100644 doc/uk/org/ury/show/item/ShowItem.html create mode 100644 doc/uk/org/ury/show/item/ShowItemProperty.html create mode 100644 doc/uk/org/ury/show/item/class-use/ShowItem.html create mode 100644 doc/uk/org/ury/show/item/class-use/ShowItemProperty.html create mode 100644 doc/uk/org/ury/show/item/package-frame.html create mode 100644 doc/uk/org/ury/show/item/package-summary.html create mode 100644 doc/uk/org/ury/show/item/package-tree.html create mode 100644 doc/uk/org/ury/show/item/package-use.html (limited to 'doc/uk/org/ury/show/item') diff --git a/doc/uk/org/ury/show/item/ShowItem.html b/doc/uk/org/ury/show/item/ShowItem.html new file mode 100644 index 0000000..5c48bf4 --- /dev/null +++ b/doc/uk/org/ury/show/item/ShowItem.html @@ -0,0 +1,278 @@ + + + + + + +ShowItem + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +uk.org.ury.show.item +
+Class ShowItem

+
+java.lang.Object
+  extended by uk.org.ury.database.DatabaseItem<ShowItemProperty,java.lang.String>
+      extended by uk.org.ury.show.item.ShowItem
+
+
+
+
public class ShowItem
extends DatabaseItem<ShowItemProperty,java.lang.String>
+ + +

+An item in the show database. +

+ +

+

+
Author:
+
Matt Windsor
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
ShowItem(java.util.Map<ShowItemProperty,java.lang.String> properties) + +
+          Construct a new ShowItem.
+  + + + + + + + + + + + +
+Method Summary
+ java.lang.StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class uk.org.ury.database.DatabaseItem
asResponse, get, has
+ + + + + + + +
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ShowItem

+
+public ShowItem(java.util.Map<ShowItemProperty,java.lang.String> properties)
+
+
Construct a new ShowItem. +

+

+
Parameters:
properties - The map of properties to store in the show item.
+
+ + + + + + + + +
+Method Detail
+ +

+toString

+
+public java.lang.String toString()
+
+
+
Overrides:
toString in class java.lang.Object
+
+
+ +
Returns:
a string representation of the ShowItem.
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/doc/uk/org/ury/show/item/ShowItemProperty.html b/doc/uk/org/ury/show/item/ShowItemProperty.html new file mode 100644 index 0000000..35cb996 --- /dev/null +++ b/doc/uk/org/ury/show/item/ShowItemProperty.html @@ -0,0 +1,382 @@ + + + + + + +ShowItemProperty + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +uk.org.ury.show.item +
+Enum ShowItemProperty

+
+java.lang.Object
+  extended by java.lang.Enum<ShowItemProperty>
+      extended by uk.org.ury.show.item.ShowItemProperty
+
+
+
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ShowItemProperty>
+
+
+
+
public enum ShowItemProperty
extends java.lang.Enum<ShowItemProperty>
+ + +

+Enumeration of the parameters that are stored in a ShowItem. +

+ +

+

+
Author:
+
Matt Windsor
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Enum Constant Summary
NAME1 + +
+           
NAME2 + +
+           
POSITION + +
+           
+ + + + + + + + + + +
+Field Summary
+ java.lang.Stringsql + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+static ShowItemPropertyvalueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static ShowItemProperty[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+NAME1

+
+public static final ShowItemProperty NAME1
+
+
+
+
+
+ +

+NAME2

+
+public static final ShowItemProperty NAME2
+
+
+
+
+
+ +

+POSITION

+
+public static final ShowItemProperty POSITION
+
+
+
+
+ + + + + + + + +
+Field Detail
+ +

+sql

+
+public final java.lang.String sql
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static ShowItemProperty[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (ShowItemProperty c : ShowItemProperty.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static ShowItemProperty valueOf(java.lang.String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
java.lang.IllegalArgumentException - if this enum type has no constant +with the specified name +
java.lang.NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/doc/uk/org/ury/show/item/class-use/ShowItem.html b/doc/uk/org/ury/show/item/class-use/ShowItem.html new file mode 100644 index 0000000..35b6def --- /dev/null +++ b/doc/uk/org/ury/show/item/class-use/ShowItem.html @@ -0,0 +1,224 @@ + + + + + + +Uses of Class uk.org.ury.show.item.ShowItem + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
uk.org.ury.show.item.ShowItem

+
+ + + + + + + + + +
+Packages that use ShowItem
uk.org.ury.show  
+  +

+ + + + + +
+Uses of ShowItem in uk.org.ury.show
+  +

+ + + + + + + + + +
Methods in uk.org.ury.show that return ShowItem
+ ShowItemShowChannel.get(int index) + +
+          Retrieve an item from the channel.
+  +

+ + + + + + + + + +
Methods in uk.org.ury.show that return types with arguments of type ShowItem
+static java.util.List<ShowItem>ShowUtils.getChannelList(DatabaseDriver db, + int showID, + int channel) + +
+          Given a show and a channel, retrieve a list of all show items + bound to that channel for the show.
+  +

+ + + + + + + + + + + + + +
Methods in uk.org.ury.show with parameters of type ShowItem
+ voidShowChannel.add(int index, + ShowItem item) + +
+          Add a new item to the channel.
+ voidShowChannel.add(ShowItem item) + +
+          Add a new item to the end of the channel.
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/doc/uk/org/ury/show/item/class-use/ShowItemProperty.html b/doc/uk/org/ury/show/item/class-use/ShowItemProperty.html new file mode 100644 index 0000000..66a0d20 --- /dev/null +++ b/doc/uk/org/ury/show/item/class-use/ShowItemProperty.html @@ -0,0 +1,203 @@ + + + + + + +Uses of Class uk.org.ury.show.item.ShowItemProperty + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
uk.org.ury.show.item.ShowItemProperty

+
+ + + + + + + + + +
+Packages that use ShowItemProperty
uk.org.ury.show.item  
+  +

+ + + + + +
+Uses of ShowItemProperty in uk.org.ury.show.item
+  +

+ + + + + + + + + + + + + +
Methods in uk.org.ury.show.item that return ShowItemProperty
+static ShowItemPropertyShowItemProperty.valueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static ShowItemProperty[]ShowItemProperty.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + + + + +
Constructor parameters in uk.org.ury.show.item with type arguments of type ShowItemProperty
ShowItem(java.util.Map<ShowItemProperty,java.lang.String> properties) + +
+          Construct a new ShowItem.
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/doc/uk/org/ury/show/item/package-frame.html b/doc/uk/org/ury/show/item/package-frame.html new file mode 100644 index 0000000..9fe2752 --- /dev/null +++ b/doc/uk/org/ury/show/item/package-frame.html @@ -0,0 +1,43 @@ + + + + + + +uk.org.ury.show.item + + + + + + + + + + + +uk.org.ury.show.item + + + + +
+Classes  + +
+ShowItem
+ + + + + + +
+Enums  + +
+ShowItemProperty
+ + + + diff --git a/doc/uk/org/ury/show/item/package-summary.html b/doc/uk/org/ury/show/item/package-summary.html new file mode 100644 index 0000000..3207cb5 --- /dev/null +++ b/doc/uk/org/ury/show/item/package-summary.html @@ -0,0 +1,171 @@ + + + + + + +uk.org.ury.show.item + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package uk.org.ury.show.item +

+ + + + + + + + + +
+Class Summary
ShowItemAn item in the show database.
+  + +

+ + + + + + + + + +
+Enum Summary
ShowItemPropertyEnumeration of the parameters that are stored in a ShowItem.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/doc/uk/org/ury/show/item/package-tree.html b/doc/uk/org/ury/show/item/package-tree.html new file mode 100644 index 0000000..16d5326 --- /dev/null +++ b/doc/uk/org/ury/show/item/package-tree.html @@ -0,0 +1,165 @@ + + + + + + +uk.org.ury.show.item Class Hierarchy + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package uk.org.ury.show.item +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Enum Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/doc/uk/org/ury/show/item/package-use.html b/doc/uk/org/ury/show/item/package-use.html new file mode 100644 index 0000000..adf545c --- /dev/null +++ b/doc/uk/org/ury/show/item/package-use.html @@ -0,0 +1,189 @@ + + + + + + +Uses of Package uk.org.ury.show.item + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Package
uk.org.ury.show.item

+
+ + + + + + + + + + + + + +
+Packages that use uk.org.ury.show.item
uk.org.ury.show  
uk.org.ury.show.item  
+  +

+ + + + + + + + +
+Classes in uk.org.ury.show.item used by uk.org.ury.show
ShowItem + +
+          An item in the show database.
+  +

+ + + + + + + + +
+Classes in uk.org.ury.show.item used by uk.org.ury.show.item
ShowItemProperty + +
+          Enumeration of the parameters that are stored in a ShowItem.
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3