Examples of url()

@param url File URL or path relative to data directory @return File indicated by provided URL @see Files#url(File,String)
  • org.jeecgframework.core.annotation.config.AutoMenu.url()
  • org.jfrog.build.api.builder.BuildInfoBuilder.url()
    Sets the URL of the build @param url Build URL @return Builder instance
  • org.jfrog.build.api.builder.BuildInfoMavenBuilder.url()
    Sets the URL of the build @param url Build URL @return Builder instance
  • org.jsoup.Connection.url()
    Set the request URL to fetch. The protocol must be HTTP or HTTPS. @param url URL to connect to @return this Connection, for chaining
  • org.jsoup.Connection.Response.url()
  • org.mifosplatform.mix.data.NamespaceData.url()
  • org.onesocialweb.model.vcard4.VCard4Factory.url()
  • org.picketlink.idm.config.LDAPStoreConfigurationBuilder.url()
  • org.sgx.yuigwt.galleryexplorer.client.api.Module.url()
    gallery module url @return
  • org.stjs.testing.annotation.HTMLFixture.url()
  • play.mvc.Call.url()
    The request URL.

  • Examples of org.sgx.yuigwt.galleryexplorer.client.api.Module.url()

      parent.setStyle("columnGap", "20px");
      Node list = parent.appendChild("<ul></ul>");
      console.log("ABCModuleListing module count: "+modules.keySet().size());
      for(String moduleName : modules.keySet()) {
        Module module = modules.get(moduleName);
        list.append("<li class=\"\" ><a href=\""+module.url()+
          "\" id=\"module-"+moduleName+"\">"+moduleName+"</a></li>");
      }
      list.delegate("click", new NodeEventDelegateCallback() {   
        @Override
        public void call(Node n, YuiEvent evt, Object arg) {
    View Full Code Here

    Examples of org.stjs.testing.annotation.HTMLFixture.url()

        resp.append("<body>\n");
        if (htmlFixture != null) {
          if (!Strings.isNullOrEmpty(htmlFixture.value())) {
            resp.append(htmlFixture.value());

          } else if (!Strings.isNullOrEmpty(htmlFixture.url())) {
            StringWriter writer = new StringWriter();
            StreamUtils.copy(getConfig().getClassLoader(), htmlFixture.url(), writer);
            resp.append(writer.toString());
          }
        }
    View Full Code Here

    Examples of play.mvc.Call.url()

                throw new ResolverMissingException("Resolver has not been set.");
            }
        final Call c = resolver.auth(getKey());
        if (overrideHost != null && !overrideHost.trim().isEmpty()) {
          return "http" + (isHttps ? "s" : "") + "://" + overrideHost
              + c.url();
        } else {
          return c.absoluteURL(request, isHttps);
        }
      }
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. All rights reserved.
    All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.