javax.faces.webapp.UIComponentClassicTagBase.getParent()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(66)

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

UIComponentClassicTagBase.getParent介绍

[英]Return the Tag that is the parent of this instance.
[中]返回此实例的父级Tag

代码示例

代码示例来源:origin: javax/javaee-web-api

@Override
public Tag getParent() {
  return classicDelegate.getParent();
}

代码示例来源:origin: org.apache.myfaces.core/myfaces-api

@Override
public Tag getParent()
{
  return target.getParent();
}

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

@Override
public Tag getParent() {
  return classicDelegate.getParent();
}

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

@Override
public Tag getParent() {
  return classicDelegate.getParent();
}

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

@Override
public Tag getParent() {
  return classicDelegate.getParent();
}

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

public Tag getParent() {
  return classicDelegate.getParent();
}

代码示例来源:origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

public Tag getParent() {
  return classicDelegate.getParent();
}

代码示例来源:origin: jboss/jboss-javaee-specs

@Override
public Tag getParent() {
  return classicDelegate.getParent();
}

代码示例来源:origin: javax.faces/com.springsource.javax.faces

public Tag getParent() {
  return classicDelegate.getParent();
}

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

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

代码示例来源:origin: javax.faces/com.springsource.javax.faces

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

代码示例来源:origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

代码示例来源:origin: javax/javaee-web-api

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

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

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

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

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

代码示例来源:origin: jboss/jboss-javaee-specs

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

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

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

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

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

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

/**
 * <p>Return the facet name that we should be stored under, if any;
 * otherwise, return null (indicating that we will be a child component).
 * </p>
 *
 * @return the name of the facet
 */
protected String getFacetName() {
  Tag parent = getParent();
  if (parent instanceof FacetTag) {
    return (((FacetTag) parent).getName());
  } else {
    return (null);
  }
}

代码示例来源:origin: org.apache.myfaces/com.springsource.org.apache.myfaces.javax.faces

public UIComponentTagWrapper(UIComponentClassicTagBase classicTag)
{
  setId(classicTag.getId());
  setJspId(classicTag.getJspId());
  setParent(classicTag.getParent());
}

相关文章

微信公众号

最新文章

更多

UIComponentClassicTagBase类方法