1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 package org.jomc.modlet.test.support;
32
33 import java.net.URI;
34 import javax.xml.bind.JAXBContext;
35 import javax.xml.bind.Marshaller;
36 import javax.xml.bind.Unmarshaller;
37 import javax.xml.transform.Source;
38 import javax.xml.validation.Schema;
39 import org.jomc.modlet.Model;
40 import org.jomc.modlet.ModelContext;
41 import org.jomc.modlet.ModelException;
42 import org.jomc.modlet.ModelValidationReport;
43 import org.jomc.modlet.Modlets;
44 import org.jomc.modlet.Service;
45 import org.w3c.dom.ls.LSResourceResolver;
46 import org.xml.sax.EntityResolver;
47
48
49
50
51
52
53
54 public final class NoSuchMethodExceptionModelContext extends ModelContext
55 {
56
57 public NoSuchMethodExceptionModelContext()
58 {
59 super( null );
60 }
61
62 @Override
63 public Modlets findModlets() throws ModelException
64 {
65 throw new UnsupportedOperationException();
66 }
67
68 @Override
69 public Model findModel( final String model ) throws ModelException
70 {
71 throw new UnsupportedOperationException();
72 }
73
74 @Override
75 public Model findModel( final Model model ) throws ModelException
76 {
77 throw new UnsupportedOperationException();
78 }
79
80 @Override
81 public EntityResolver createEntityResolver( final String model ) throws ModelException
82 {
83 throw new UnsupportedOperationException();
84 }
85
86 @Override
87 public LSResourceResolver createResourceResolver( final String model ) throws ModelException
88 {
89 throw new UnsupportedOperationException();
90 }
91
92 @Override
93 public Schema createSchema( final String model ) throws ModelException
94 {
95 throw new UnsupportedOperationException();
96 }
97
98 @Override
99 public JAXBContext createContext( final String model ) throws ModelException
100 {
101 throw new UnsupportedOperationException();
102 }
103
104 @Override
105 public Marshaller createMarshaller( final String model ) throws ModelException
106 {
107 throw new UnsupportedOperationException();
108 }
109
110 @Override
111 public Unmarshaller createUnmarshaller( final String model ) throws ModelException
112 {
113 throw new UnsupportedOperationException();
114 }
115
116 @Override
117 public Model processModel( final Model model ) throws ModelException
118 {
119 throw new UnsupportedOperationException();
120 }
121
122 @Override
123 public ModelValidationReport validateModel( final Model model ) throws ModelException
124 {
125 throw new UnsupportedOperationException();
126 }
127
128 @Override
129 public ModelValidationReport validateModel( final String model, final Source source ) throws ModelException
130 {
131 throw new UnsupportedOperationException();
132 }
133
134 @Override
135 public <T> T createServiceObject( final Service service, final Class<T> type ) throws ModelException
136 {
137 throw new UnsupportedOperationException();
138 }
139
140 @Override
141 public EntityResolver createEntityResolver( final URI publicId ) throws ModelException
142 {
143 throw new UnsupportedOperationException();
144 }
145
146 @Override
147 public LSResourceResolver createResourceResolver( final URI publicId ) throws ModelException
148 {
149 throw new UnsupportedOperationException();
150 }
151
152 @Override
153 public Schema createSchema( final URI publicId ) throws ModelException
154 {
155 throw new UnsupportedOperationException();
156 }
157
158 @Override
159 public JAXBContext createContext( final URI publicId ) throws ModelException
160 {
161 throw new UnsupportedOperationException();
162 }
163
164 @Override
165 public Marshaller createMarshaller( final URI publicId ) throws ModelException
166 {
167 throw new UnsupportedOperationException();
168 }
169
170 @Override
171 public Unmarshaller createUnmarshaller( final URI publicId ) throws ModelException
172 {
173 throw new UnsupportedOperationException();
174 }
175
176 }