aboutsummaryrefslogtreecommitdiff
path: root/examples/src/example/xml/SimCard.java
diff options
context:
space:
mode:
authorcrazyboblee <crazyboblee@d779f126-a31b-0410-b53b-1d3aecad763e>2009-02-05 06:23:52 +0000
committercrazyboblee <crazyboblee@d779f126-a31b-0410-b53b-1d3aecad763e>2009-02-05 06:23:52 +0000
commitc112063529baac332325fde0f2616e04dd073aee (patch)
tree952570627cb099f30d41f6838fa31be8c231a45f /examples/src/example/xml/SimCard.java
parent210bf43ac2ce742fabe0ab881c0ebfa50a4e32b2 (diff)
downloadguice-c112063529baac332325fde0f2616e04dd073aee.tar.gz
Added XML example.
git-svn-id: https://google-guice.googlecode.com/svn/trunk@831 d779f126-a31b-0410-b53b-1d3aecad763e
Diffstat (limited to 'examples/src/example/xml/SimCard.java')
-rw-r--r--examples/src/example/xml/SimCard.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/src/example/xml/SimCard.java b/examples/src/example/xml/SimCard.java
new file mode 100644
index 00000000..71cf39bd
--- /dev/null
+++ b/examples/src/example/xml/SimCard.java
@@ -0,0 +1,10 @@
+package example.xml;
+
+import java.util.Collections;
+
+public class SimCard implements Contacts {
+
+ public Iterable<Contact> findByName(String name) {
+ return Collections.emptyList();
+ }
+} \ No newline at end of file