gpt4 book ai didi

com.sun.faces.config.WebConfiguration.getFaceletsConfiguration()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-24 07:45:05 29 4
gpt4 key购买 nike

本文整理了Java中com.sun.faces.config.WebConfiguration.getFaceletsConfiguration()方法的一些代码示例,展示了WebConfiguration.getFaceletsConfiguration()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebConfiguration.getFaceletsConfiguration()方法的具体详情如下:
包路径:com.sun.faces.config.WebConfiguration
类名称:WebConfiguration
方法名:getFaceletsConfiguration

WebConfiguration.getFaceletsConfiguration介绍

暂无

代码示例

代码示例来源:origin: eclipse-ee4j/mojarra

public static FaceletsConfiguration getInstance(FacesContext context) {
  FaceletsConfiguration result = null;
  Map<Object, Object> attrs = context.getAttributes();
  result = (FaceletsConfiguration) attrs.get(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME);
  if (null == result) {
    WebConfiguration config = WebConfiguration.getInstance(context.getExternalContext());
    result = config.getFaceletsConfiguration();
    attrs.put(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME, result);
  }
  return result;
}

代码示例来源:origin: com.sun.faces/jsf-impl

public static FaceletsConfiguration getInstance(FacesContext context) {
  FaceletsConfiguration result = null;
  Map<Object, Object> attrs = context.getAttributes();
  result = (FaceletsConfiguration) attrs.get(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME);
  if (null == result) {
    WebConfiguration config = WebConfiguration.getInstance(context.getExternalContext());
    result = config.getFaceletsConfiguration();
    attrs.put(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME, result);
  }
  return result;
}

代码示例来源:origin: org.glassfish/javax.faces

public static FaceletsConfiguration getInstance(FacesContext context) {
  FaceletsConfiguration result = null;
  Map<Object, Object> attrs = context.getAttributes();
  result = (FaceletsConfiguration) attrs.get(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME);
  if (null == result) {
    WebConfiguration config = WebConfiguration.getInstance(context.getExternalContext());
    result = config.getFaceletsConfiguration();
    attrs.put(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME, result);
  }
  return result;
}

代码示例来源:origin: org.glassfish/jakarta.faces

public static FaceletsConfiguration getInstance(FacesContext context) {
  FaceletsConfiguration result = null;
  Map<Object, Object> attrs = context.getAttributes();
  result = (FaceletsConfiguration) attrs.get(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME);
  if (null == result) {
    WebConfiguration config = WebConfiguration.getInstance(context.getExternalContext());
    result = config.getFaceletsConfiguration();
    attrs.put(FaceletsConfiguration.FACELETS_CONFIGURATION_ATTRIBUTE_NAME, result);
  }
  return result;
}

代码示例来源:origin: com.sun.faces/jsf-impl

public void processingInstruction(String target, String data)
    throws SAXException {
  if (this.inDocument) {
    // If there is a process-as value for the extension, only allow
    // the PI to be written if its value is xhtml
    boolean processAsXhtml =
        this.unit.getWebConfiguration().getFaceletsConfiguration().isProcessCurrentDocumentAsFaceletsXhtml(alias);
    if (processAsXhtml) {
      StringBuffer sb = new StringBuffer(64);
      sb.append("<?").append(target).append(' ').append(data).append(
          "?>\n");
      this.unit.writeInstruction(sb.toString());
    }
  }
}

代码示例来源:origin: org.glassfish/javax.faces

@Override
public void processingInstruction(String target, String data)
    throws SAXException {
  if (this.inDocument) {
    // If there is a process-as value for the extension, only allow
    // the PI to be written if its value is xhtml
    boolean processAsXhtml =
        this.unit.getWebConfiguration().getFaceletsConfiguration().isProcessCurrentDocumentAsFaceletsXhtml(alias);
    if (processAsXhtml) {
      StringBuffer sb = new StringBuffer(64);
      sb.append("<?").append(target).append(' ').append(data).append(
          "?>\n");
      this.unit.writeInstruction(sb.toString());
    }
  }
}

代码示例来源:origin: eclipse-ee4j/mojarra

@Override
public void processingInstruction(String target, String data)
    throws SAXException {
  if (this.inDocument) {
    // If there is a process-as value for the extension, only allow
    // the PI to be written if its value is xhtml
    boolean processAsXhtml =
        this.unit.getWebConfiguration().getFaceletsConfiguration().isProcessCurrentDocumentAsFaceletsXhtml(alias);
    if (processAsXhtml) {
      StringBuffer sb = new StringBuffer(64);
      sb.append("<?").append(target).append(' ').append(data).append(
          "?>\n");
      this.unit.writeInstruction(sb.toString());
    }
  }
}

代码示例来源:origin: org.glassfish/jakarta.faces

@Override
public void comment(char[] ch, int start, int length)
    throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeComments(alias)) {
      this.unit.writeComment(new String(ch, start, length));
    }
  }
}

代码示例来源:origin: com.sun.faces/jsf-impl

public void comment(char[] ch, int start, int length)
    throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeComments(alias)) {
      this.unit.writeComment(new String(ch, start, length));
    }
  }
}

代码示例来源:origin: org.glassfish/javax.faces

@Override
public void comment(char[] ch, int start, int length)
    throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeComments(alias)) {
      this.unit.writeComment(new String(ch, start, length));
    }
  }
}

代码示例来源:origin: eclipse-ee4j/mojarra

@Override
public void comment(char[] ch, int start, int length)
    throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeComments(alias)) {
      this.unit.writeComment(new String(ch, start, length));
    }
  }
}

代码示例来源:origin: com.sun.faces/jsf-impl

public void startCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("<![CDATA[");
    }
  }
}

代码示例来源:origin: eclipse-ee4j/mojarra

@Override
public void endCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("]]>");
    }
  }
}

代码示例来源:origin: org.glassfish/javax.faces

@Override
public void endCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("]]>");
    }
  }
}

代码示例来源:origin: org.glassfish/javax.faces

@Override
public void startCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("<![CDATA[");
    }
  }
}

代码示例来源:origin: com.sun.faces/jsf-impl

public void endCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("]]>");
    }
  }
}

代码示例来源:origin: org.glassfish/jakarta.faces

@Override
public void endCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("]]>");
    }
  }
}

代码示例来源:origin: org.glassfish/jakarta.faces

@Override
public void startCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("<![CDATA[");
    }
  }
}

代码示例来源:origin: eclipse-ee4j/mojarra

@Override
public void startCDATA() throws SAXException {
  if (this.inDocument) {
    if (!unit.getWebConfiguration().getFaceletsConfiguration().isConsumeCDATA(alias)) {
      this.unit.writeInstruction("<![CDATA[");
    }
  }
}

代码示例来源:origin: org.glassfish/javax.faces

@Override
public void encodeBegin(FacesContext context, UIComponent component)
   throws IOException {
  ResponseWriter writer = context.getResponseWriter();
  writer.startElement("head", component);
  RenderKitUtils.renderPassThruAttributes(context,
                      writer,
                      component,
                      HEAD_ATTRIBUTES);
  WebConfiguration webConfig = WebConfiguration.getInstance(context.getExternalContext());
  FaceletsConfiguration faceletsConfig = webConfig.getFaceletsConfiguration();
  if (faceletsConfig.isOutputHtml5Doctype(context.getViewRoot().getViewId())) {
    String clientId = component.getClientId(context);
    writer.writeAttribute("id", clientId, "clientId");
  }
}

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com