All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.shrinkwrap.descriptor.api.beans11.Scan Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.descriptor.api.beans11; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.beans11.Exclude;
import org.jboss.shrinkwrap.descriptor.api.beans.*;
import org.jboss.shrinkwrap.descriptor.api.beans.JavaeeScanCommType;

import org.jboss.shrinkwrap.descriptor.api.beans11.Exclude;/**
 * This interface defines the contract for the  scan  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface Scan extends Child, 
    JavaeeScanCommType,
    Exclude>> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: Scan ElementName: javaee:exclude ElementType : exclude
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new exclude element with the given value will be created.
    * Otherwise, the existing exclude element will be returned.
    * @return  a new or existing instance of Exclude> 
    */
   public Exclude> getOrCreateExclude();

   /**
    * Removes the exclude element 
    * @return the current instance of Scan 
    */
   public Scan removeExclude();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy