org.jboss.shrinkwrap.descriptor.api.jsp22
Interface JspConfigType<T>

All Superinterfaces:
Child<T>

public interface JspConfigType<T>
extends Child<T>

This interface defines the contract for the jsp-configType xsd type

Since:
Generation date :2013-01-26T19:26:59.858+01:00
Author:
Ralf Battenfeld, Andrew Lee Rubinger

Method Summary
 JspPropertyGroupType<JspConfigType<T>> createJspPropertyGroup()
          Creates a new jsp-property-group element
 TaglibType<JspConfigType<T>> createTaglib()
          Creates a new taglib element
 List<JspPropertyGroupType<JspConfigType<T>>> getAllJspPropertyGroup()
          Returns all jsp-property-group elements
 List<TaglibType<JspConfigType<T>>> getAllTaglib()
          Returns all taglib elements
 String getId()
          Returns the id attribute
 JspPropertyGroupType<JspConfigType<T>> getOrCreateJspPropertyGroup()
          If not already created, a new jsp-property-group element will be created and returned.
 TaglibType<JspConfigType<T>> getOrCreateTaglib()
          If not already created, a new taglib element will be created and returned.
 JspConfigType<T> id(String id)
          Sets the id attribute
 JspConfigType<T> removeAllJspPropertyGroup()
          Removes all jsp-property-group elements
 JspConfigType<T> removeAllTaglib()
          Removes all taglib elements
 JspConfigType<T> removeId()
          Removes the id attribute
 
Methods inherited from interface org.jboss.shrinkwrap.descriptor.api.Child
up
 

Method Detail

getOrCreateTaglib

TaglibType<JspConfigType<T>> getOrCreateTaglib()
If not already created, a new taglib element will be created and returned. Otherwise, the first existing taglib element will be returned.

Returns:
the instance defined for the element taglib

createTaglib

TaglibType<JspConfigType<T>> createTaglib()
Creates a new taglib element

Returns:
the new created instance of TaglibType>

getAllTaglib

List<TaglibType<JspConfigType<T>>> getAllTaglib()
Returns all taglib elements

Returns:
list of taglib

removeAllTaglib

JspConfigType<T> removeAllTaglib()
Removes all taglib elements

Returns:
the current instance of TaglibType>

getOrCreateJspPropertyGroup

JspPropertyGroupType<JspConfigType<T>> getOrCreateJspPropertyGroup()
If not already created, a new jsp-property-group element will be created and returned. Otherwise, the first existing jsp-property-group element will be returned.

Returns:
the instance defined for the element jsp-property-group

createJspPropertyGroup

JspPropertyGroupType<JspConfigType<T>> createJspPropertyGroup()
Creates a new jsp-property-group element

Returns:
the new created instance of JspPropertyGroupType>

getAllJspPropertyGroup

List<JspPropertyGroupType<JspConfigType<T>>> getAllJspPropertyGroup()
Returns all jsp-property-group elements

Returns:
list of jsp-property-group

removeAllJspPropertyGroup

JspConfigType<T> removeAllJspPropertyGroup()
Removes all jsp-property-group elements

Returns:
the current instance of JspPropertyGroupType>

id

JspConfigType<T> id(String id)
Sets the id attribute

Parameters:
id - the value for the attribute id
Returns:
the current instance of JspConfigType

getId

String getId()
Returns the id attribute

Returns:
the value defined for the attribute id

removeId

JspConfigType<T> removeId()
Removes the id attribute

Returns:
the current instance of JspConfigType


Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.