gpt4 book ai didi

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

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

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

WebConfiguration.isSet介绍

暂无

代码示例

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(WebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(WebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(BooleanWebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(WebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(WebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(BooleanWebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(BooleanWebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(WebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(BooleanWebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

protected boolean isDisallowDoctypeDeclSet() {
  return unit.getWebConfiguration().isSet(DisallowDoctypeDecl);
}

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

/**
 * @param param the init parameter of interest
 * @return <code>true</code> if the parameter was explicitly set,
 *  otherwise, <code>false</code>
 */
public boolean isSet(BooleanWebContextInitParameter param) {
  return isSet(param.getQualifiedName());
}

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

protected boolean isDisallowDoctypeDeclSet() {
  return unit.getWebConfiguration().isSet(DisallowDoctypeDecl);
}

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

private boolean shouldInitConfigMonitoring() {
  boolean development = isDevModeEnabled();
  boolean threadingOptionSpecified = webConfig.isSet(EnableThreading);
  
  if (development && !threadingOptionSpecified) {
    return true;
  }
  
  return development && threadingOptionSpecified && webConfig.isOptionEnabled(EnableThreading);
}

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

private boolean shouldInitConfigMonitoring() {
  boolean development = isDevModeEnabled();
  boolean threadingOptionSpecified = webConfig.isSet(EnableThreading);
  if (development && !threadingOptionSpecified) {
    return true;
  }
  boolean threadingOption = webConfig.isOptionEnabled(EnableThreading);
  return (development && threadingOptionSpecified && threadingOption);
}

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

private boolean shouldInitConfigMonitoring() {
  boolean development = isDevModeEnabled();
  boolean threadingOptionSpecified = webConfig.isSet(EnableThreading);
  
  if (development && !threadingOptionSpecified) {
    return true;
  }
  
  return development && threadingOptionSpecified && webConfig.isOptionEnabled(EnableThreading);
}

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

private boolean shouldInitConfigMonitoring() {
  boolean development = isDevModeEnabled();
  boolean threadingOptionSpecified = webConfig.isSet(EnableThreading);
  
  if (development && !threadingOptionSpecified) {
    return true;
  }
  
  return development && threadingOptionSpecified && webConfig.isOptionEnabled(EnableThreading);
}

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

public MultiViewHandler() {
  WebConfiguration config = WebConfiguration.getInstance();
     
  configuredExtensions = config.getConfiguredExtensions();
  extensionsSet = config.isSet(WebConfiguration.WebContextInitParameter.DefaultSuffix);
  vdlFactory = (ViewDeclarationLanguageFactory) FactoryFinder.getFactory(VIEW_DECLARATION_LANGUAGE_FACTORY);
  protectedViews = new CopyOnWriteArraySet<>();
}

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

public MultiViewHandler() {
  WebConfiguration config = WebConfiguration.getInstance();
     
  configuredExtensions = config.getConfiguredExtensions();
  extensionsSet = config.isSet(WebConfiguration.WebContextInitParameter.DefaultSuffix);
  vdlFactory = (ViewDeclarationLanguageFactory)
      FactoryFinder.getFactory(FactoryFinder.VIEW_DECLARATION_LANGUAGE_FACTORY);
  protectedViews = new CopyOnWriteArraySet<String>();
}

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

public MultiViewHandler() {
  WebConfiguration config = WebConfiguration.getInstance();
     
  configuredExtensions = config.getConfiguredExtensions();
  extensionsSet = config.isSet(WebConfiguration.WebContextInitParameter.DefaultSuffix);
  vdlFactory = (ViewDeclarationLanguageFactory) FactoryFinder.getFactory(VIEW_DECLARATION_LANGUAGE_FACTORY);
  protectedViews = new CopyOnWriteArraySet<>();
}

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

public MultiViewHandler() {
  WebConfiguration config = WebConfiguration.getInstance();
  configuredExtensions = config.getConfiguredExtensions();
  extensionsSet = config.isSet(WebConfiguration.WebContextInitParameter.DefaultSuffix);
  vdlFactory = (ViewDeclarationLanguageFactory) FactoryFinder.getFactory(VIEW_DECLARATION_LANGUAGE_FACTORY);
  protectedViews = new CopyOnWriteArraySet<>();
}

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