Examples of displayName()


Examples of javax.servlet.annotation.WebFilter.displayName()

                newFilter.setFilterName(filterName);
                newFilter.setAsyncSupported(webFilter.asyncSupported());
                if (!webFilter.description().isEmpty()) {
                    newFilter.addDescription(new Text(null, webFilter.description()));
                }
                if (!webFilter.displayName().isEmpty()) {
                    newFilter.addDisplayName(new Text(null, webFilter.displayName()));
                }
                newFilter.setFilterClass(cls.getName());
                for (WebInitParam webInitParam : webFilter.initParams()) {
                    newFilter.getInitParam().add(newParamValue(webInitParam));
View Full Code Here

Examples of javax.servlet.annotation.WebFilter.displayName()

                newFilter.setAsyncSupported(webFilter.asyncSupported());
                if (!webFilter.description().isEmpty()) {
                    newFilter.addDescription(new Text(null, webFilter.description()));
                }
                if (!webFilter.displayName().isEmpty()) {
                    newFilter.addDisplayName(new Text(null, webFilter.displayName()));
                }
                newFilter.setFilterClass(cls.getName());
                for (WebInitParam webInitParam : webFilter.initParams()) {
                    newFilter.getInitParam().add(newParamValue(webInitParam));
                }
View Full Code Here

Examples of javax.servlet.annotation.WebServlet.displayName()

                }
            } else {
                //Add a new Servlet
                //create servlet element
                Servlet newServlet = new Servlet();
                if (!webServlet.displayName().isEmpty()) {
                    newServlet.addDisplayName(new Text(null, webServlet.displayName()));
                }
                newServlet.setServletClass(cls.getName());
                newServlet.setServletName(servletName);
                newServlet.setAsyncSupported(webServlet.asyncSupported());
View Full Code Here

Examples of javax.servlet.annotation.WebServlet.displayName()

            } else {
                //Add a new Servlet
                //create servlet element
                Servlet newServlet = new Servlet();
                if (!webServlet.displayName().isEmpty()) {
                    newServlet.addDisplayName(new Text(null, webServlet.displayName()));
                }
                newServlet.setServletClass(cls.getName());
                newServlet.setServletName(servletName);
                newServlet.setAsyncSupported(webServlet.asyncSupported());
                if (!webServlet.description().isEmpty()) {
View Full Code Here

Examples of javax.servlet.sip.annotation.SipApplication.displayName()

      throw new IllegalStateException("App-name in sip.xml: " + context.getName()
          + " does not match with SipApplication annotation: " + annotation.name());
    context.getSipMetaData().setAppName(annotation.name());
   
    context.setDistributable(annotation.distributable());
    context.setDisplayName(annotation.displayName());
    context.setProxyTimeout(annotation.proxyTimeout());
    context.setSessionTimeout(annotation.sessionTimeout());
        context.getSipMetaData().setMainServletName(annotation.mainServlet());
    }
}
View Full Code Here

Examples of org.activiti.designer.integration.servicetask.annotation.Property.displayName()

          customPropertyFields.add(createdCustomPropertyField);

          previousAnchor = createdControl;

          // Create a label for the field
          String displayName = property.displayName();
          if (StringUtils.isBlank(property.displayName())) {
            displayName = fieldInfo.getFieldName();
          }

          if (property.required()) {
View Full Code Here

Examples of org.aiotrade.lib.indicator.Indicator.displayName()

        scala.collection.Iterator<Indicator> indicators = PersistenceManager$.MODULE$.apply().lookupAllRegisteredServices(Indicator.class, "Indicators").iterator();
        List<String> inds = new ArrayList<String>();
        while (indicators.hasNext()) {
            Indicator ind = indicators.next();
            inds.add(ind.displayName());
        }
        indicatorList.setListData(inds.toArray());

        if (inds.size() > 0) {
            indicatorList.setSelectedIndex(0);
View Full Code Here

Examples of org.aiotrade.lib.securities.dataserver.QuoteServer.displayName()

        Image icon = (Image) selectedServer.icon().get();
        if (icon != null) {
            iconLabel.setIcon(new ImageIcon(icon));
        }

        if (selectedServer.displayName().toUpperCase().contains("INTERNET") == false) {
            chooseButton.setEnabled(true);
            pathField.setEnabled(true);
            formatStringField.setEnabled(true);
        } else {
            chooseButton.setEnabled(false);
View Full Code Here

Examples of org.apache.hadoop.hive.ql.plan.Explain.displayName()

    String keyJSONObject = null;

    if (note instanceof Explain) {
      Explain xpl_note = (Explain) note;
      if (extended || xpl_note.normalExplain()) {
        keyJSONObject = xpl_note.displayName();
        if (out != null) {
          out.print(indentString(indent));
          if (appendToHeader != null && !appendToHeader.isEmpty()) {
            out.println(xpl_note.displayName() + appendToHeader);
          } else {
View Full Code Here

Examples of org.apache.hadoop.hive.ql.plan.Explain.displayName()

      if (extended || xpl_note.normalExplain()) {
        keyJSONObject = xpl_note.displayName();
        if (out != null) {
          out.print(indentString(indent));
          if (appendToHeader != null && !appendToHeader.isEmpty()) {
            out.println(xpl_note.displayName() + appendToHeader);
          } else {
            out.println(xpl_note.displayName());
          }
        }
      }
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.