HomeSort by relevance Sort by last modified time
    Searched full:servletkey (Results 1 - 9 of 9) sorted by null

  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletsModuleBuilder.java 65 public void with(Class<? extends HttpServlet> servletKey) {
66 with(Key.get(servletKey));
69 public void with(Key<? extends HttpServlet> servletKey) {
70 with(servletKey, new HashMap<String, String>());
77 public void with(Class<? extends HttpServlet> servletKey,
79 with(Key.get(servletKey), initParams);
82 public void with(Key<? extends HttpServlet> servletKey,
84 with(servletKey, initParams, null);
87 private void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams,
95 new ServletDefinition(pattern, servletKey, UriPatternTyp
    [all...]
ServletDefinition.java 56 private final Key<? extends HttpServlet> servletKey;
65 public ServletDefinition(String pattern, Key<? extends HttpServlet> servletKey,
68 this.servletKey = servletKey;
91 servletKey,
107 if (!Scopes.isSingleton(injector.getBinding(servletKey))) {
109 + servletKey + " was not bound in singleton scope.");
112 HttpServlet httpServlet = injector.getInstance(servletKey);
123 return servletKey.toString();
294 return servletKey.toString()
    [all...]
ServletModule.java 316 void with(Class<? extends HttpServlet> servletKey);
317 void with(Key<? extends HttpServlet> servletKey);
320 void with(Class<? extends HttpServlet> servletKey, Map<String, String> initParams);
321 void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams);
  /external/guice/lib/build/
guice-2.0.xml     [all...]
guice-3.0.xml     [all...]
guice-4.0.xml     [all...]
  /external/guice/latest-api-diffs/
2.0.xml     [all...]
3.0.xml     [all...]
4.0.xml     [all...]

Completed in 236 milliseconds