Searched defs:servletKey (Results  1 – 3 of 3) sorted by relevance
| /external/guice/extensions/servlet/src/com/google/inject/servlet/ | 
| D | ServletsModuleBuilder.java | 86     public void with(Class<? extends HttpServlet> servletKey) {  in with()91     public void with(Key<? extends HttpServlet> servletKey) {  in with()
 101     public void with(Class<? extends HttpServlet> servletKey, Map<String, String> initParams) {  in with()
 106     public void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams) {  in with()
 111         Key<? extends HttpServlet> servletKey,  in with()
 123       Key<HttpServlet> servletKey = Key.get(HttpServlet.class, UniqueAnnotations.create());  in with()  local
 
 | 
| D | ServletModule.java | 357     void with(Class<? extends HttpServlet> servletKey);  in with()359     void with(Key<? extends HttpServlet> servletKey);  in with()
 363     void with(Class<? extends HttpServlet> servletKey, Map<String, String> initParams);  in with()
 365     void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams);  in with()
 
 | 
| D | ServletDefinition.java | 53   private final Key<? extends HttpServlet> servletKey;  field in ServletDefinition63       Key<? extends HttpServlet> servletKey,  in ServletDefinition()
 
 |