Tabnine Logo
JSFFaceletTag
Code IndexAdd Tabnine to your IDE (free)

How to use
JSFFaceletTag
in
org.apache.myfaces.buildtools.maven2.plugin.builder.annotation

Best Java code snippets using org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFFaceletTag (Showing top 20 results out of 315)

origin: org.apache.myfaces.commons/myfaces-validators20

@JSFFaceletTag
public class ValidatorBaseTagHandler extends ValidatorHandler
{

  public ValidatorBaseTagHandler(ValidatorConfig config)
  {
    super(config);
  }

  @Override
  protected MetaRuleset createMetaRuleset(Class type)
  {
    MetaRuleset ruleSet = super.createMetaRuleset(type);
    
    //Add rule to handle EL expressions
    ruleSet.addRule(_ValidatorRule.INSTANCE);
    
    return ruleSet;
  }
}

origin: org.apache.myfaces.commons/myfaces-validators20

@JSFFaceletTag(
    name = "mcv:validateDateRestriction",
    bodyContent = "empty",
    validatorClass = "org.apache.myfaces.commons.validator.DateRestrictionValidator")
public class ValidateDateRestrictionTagHandler extends ValidatorBaseTagHandler
{
  
  public ValidateDateRestrictionTagHandler(ValidatorConfig config)
  {
    super(config);
  }

  @Override
  protected MetaRuleset createMetaRuleset(Class type)
  {
    MetaRuleset ruleSet = super.createMetaRuleset(type);

    ruleSet.addRule(_DateRestrictionRule.INSTANCE);
    return ruleSet;
  }
}

origin: org.apache.myfaces.core/myfaces-impl

/**
 *
 * @author Leonardo Uribe
 */
@JSFFaceletTag(
    name = "jsf:element",
    componentClass = "org.apache.myfaces.view.facelets.component.JsfElement")
public class JsfElementHandler extends javax.faces.view.facelets.ComponentHandler
{

  public JsfElementHandler(ComponentConfig config)
  {
    super(config);
  }
  
  protected MetaRuleset createMetaRuleset(Class type)
  {
    MetaRuleset rules = super.createMetaRuleset(type);
    
    rules.alias("class", "styleClass");
    rules.addRule(ElementNameRule.INSTANCE);
    
    return rules;
  }
  
}

origin: org.apache.myfaces.core/myfaces-shaded-impl

/**
 * Subtag of <choose> that follows <when> tags
 * and runs only if all of the prior conditions evaluated to
 * 'false'
 * 
 * @author Jacob Hookom
 * @version $Id: ChooseOtherwiseHandler.java,v 1.3 2008/07/13 19:01:44 rlubke Exp $
 */
@JSFFaceletTag(name="c:otherwise")
public final class ChooseOtherwiseHandler extends TagHandler
{

  public ChooseOtherwiseHandler(TagConfig config)
  {
    super(config);
  }

  public void apply(FaceletContext ctx, UIComponent parent) throws IOException, FacesException, FaceletException,
      ELException
  {
    this.nextHandler.apply(ctx, parent);
  }
}

origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

/**
 * Subtag of <choose> that follows <when> tags
 * and runs only if all of the prior conditions evaluated to
 * 'false'
 * 
 * @author Jacob Hookom
 * @version $Id: ChooseOtherwiseHandler.java,v 1.3 2008/07/13 19:01:44 rlubke Exp $
 */
@JSFFaceletTag(name="c:otherwise")
public final class ChooseOtherwiseHandler extends TagHandler
{

  public ChooseOtherwiseHandler(TagConfig config)
  {
    super(config);
  }

  public void apply(FaceletContext ctx, UIComponent parent) throws IOException, FacesException, FaceletException,
      ELException
  {
    this.nextHandler.apply(ctx, parent);
  }
}

origin: org.apache.myfaces.core/myfaces-impl

/**
 * Subtag of <choose> that follows <when> tags
 * and runs only if all of the prior conditions evaluated to
 * 'false'
 * 
 * @author Jacob Hookom
 * @version $Id$
 */
@JSFFaceletTag(name="c:otherwise")
public final class ChooseOtherwiseHandler extends TagHandler
{

  public ChooseOtherwiseHandler(TagConfig config)
  {
    super(config);
  }

  @Override
  public void apply(FaceletContext ctx, UIComponent parent) throws IOException, FacesException, FaceletException,
      ELException
  {
    this.nextHandler.apply(ctx, parent);
  }
}

origin: org.apache.myfaces.core/myfaces-impl

@JSFFaceletTag(name="composite:actionSource")
public class ActionSourceHandler extends AttachedObjectTargetHandler<ActionSource2AttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-impl

@JSFFaceletTag(
    name = "f:selectItems",
    bodyContent = "empty",
origin: org.apache.myfaces.core/myfaces-shaded-impl

@JSFFaceletTag(name="composite:valueHolder")
public class ValueHolderHandler extends AttachedObjectTargetHandler<ValueHolderAttachedObjectTarget>
origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

@JSFFaceletTag(name="composite:actionSource")
public class ActionSourceHandler extends AttachedObjectTargetHandler<ActionSource2AttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-shaded-impl

@JSFFaceletTag(name="composite:actionSource")
public class ActionSourceHandler extends AttachedObjectTargetHandler<ActionSource2AttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-shaded-impl

@JSFFaceletTag(
    name = "f:selectItems",
    bodyContent = "empty",
origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

@JSFFaceletTag(name="composite:editableValueHolder")
public class EditableValueHolderHandler extends AttachedObjectTargetHandler<EditableValueHolderAttachedObjectTarget>
origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

@JSFFaceletTag(
    name = "f:selectItems",
    bodyContent = "empty",
origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

@JSFFaceletTag(name="composite:valueHolder")
public class ValueHolderHandler extends AttachedObjectTargetHandler<ValueHolderAttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-shaded-impl

@JSFFaceletTag(name="composite:editableValueHolder")
public class EditableValueHolderHandler extends AttachedObjectTargetHandler<EditableValueHolderAttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-impl

@JSFFaceletTag(name="composite:valueHolder")
public class ValueHolderHandler extends AttachedObjectTargetHandler<ValueHolderAttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-impl

@JSFFaceletTag(name="composite:editableValueHolder")
public class EditableValueHolderHandler extends AttachedObjectTargetHandler<EditableValueHolderAttachedObjectTarget>
origin: org.apache.myfaces.core/myfaces-impl

@JSFFaceletTag(
    name = "f:verbatim",
    bodyContent = "empty", 
origin: org.apache.myfaces.core/myfaces-shaded-impl

@JSFFaceletTag(
    name = "h:outputStylesheet",
    componentClass = "org.apache.myfaces.view.facelets.tag.jsf.html._HtmlOutputStylesheet")
org.apache.myfaces.buildtools.maven2.plugin.builder.annotationJSFFaceletTag

Most used methods

  • <init>

Popular in Java

  • Finding current android device location
  • compareTo (BigDecimal)
  • getApplicationContext (Context)
  • onCreateOptionsMenu (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now