KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > rdf > model > test > MockModelSpec


1 /*
2     (c) Copyright 2005 Hewlett-Packard Development Company, LP
3     All rights reserved.
4     [See end of file]
5 */

6
7 package com.hp.hpl.jena.rdf.model.test;
8
9 import com.hp.hpl.jena.rdf.model.*;
10
11 /**
12     A fake model-spec (has methods but broken behaviour) for testing
13     purposes (as a ModelSpec produced by referring to its class-name).
14     
15     @author kers
16 */

17 public class MockModelSpec implements ModelSpec
18     {
19     public MockModelSpec( Resource root, Model spec )
20         {}
21     
22     public Model createModelOver( String JavaDoc name )
23         {
24         return null;
25         }
26     
27     public Model getDescription()
28         {
29         return null;
30         }
31     
32     public Model getDescription( Resource root )
33         {
34         return null;
35         }
36     
37     public Model addDescription( Model m, Resource self )
38         {
39         return null;
40         }
41     
42     public Model getModel()
43         { return null;
44         }
45     
46     public Model createModel()
47         {
48         return null;
49         }
50     
51     public Model openModel( String JavaDoc name )
52         {
53         return null;
54         }
55     
56     public Model openModelIfPresent( String JavaDoc string )
57         {
58         return null;
59         }
60     }
61
62 /*
63  * (c) Copyright 2005 Hewlett-Packard Development Company, LP
64  * All rights reserved.
65  *
66  * Redistribution and use in source and binary forms, with or without
67  * modification, are permitted provided that the following conditions
68  * are met:
69  * 1. Redistributions of source code must retain the above copyright
70  * notice, this list of conditions and the following disclaimer.
71  * 2. Redistributions in binary form must reproduce the above copyright
72  * notice, this list of conditions and the following disclaimer in the
73  * documentation and/or other materials provided with the distribution.
74  * 3. The name of the author may not be used to endorse or promote products
75  * derived from this software without specific prior written permission.
76  *
77  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
78  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
79  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
80  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
81  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
82  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
83  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
84  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
85  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
86  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
87 */
Popular Tags