maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/trinidad/parse/EventBean.java [26:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class EventBean extends ObjectBean
{
  public String getEventName()
  {
    return Util.getEventNameFromEventType(_eventType);
  }

  /**
   * Sets the description of this property.
   *
   * @param description  the property description
   */
  public void setDescription(
    String description)
  {
    _description = description;
  }

  /**
   * Returns the description of this property.
   *
   * @return  the property description
   */
  public String getDescription()
  {
    return _description;
  }

  /**
   * Sets the event type for this event.
   *
   * @param eventType  the event type
   */
  public void setEventType(
    String eventType)
  {
    _eventType = eventType;
  }

  /**
   * Returns the event type for this event.
   *
   * @return  the event type
   */
  public String getEventType()
  {
    return _eventType;
  }

  /**
   * Sets the event class for this event.
   *
   * @param eventName  the event class
   */
  public void setEventClass(
    String eventClass)
  {
    _eventClass = eventClass;
  }

  /**
   * Returns the event class for this event.
   *
   * @return  the event class
   */
  public String getEventClass()
  {
    return _eventClass;
  }

  /**
   * Sets the event listener class for this event.
   *
   * @param eventListenerClass  the event listener class
   */
  public void setEventListenerClass(
    String eventListenerClass)
  {
    _eventListenerClass = eventListenerClass;
  }

  /**
   * Returns the event listener class for this event.
   *
   * @return  the event listener class
   */
  public String getEventListenerClass()
  {
    return _eventListenerClass;
  }

  /**
   * Sets the event source interface for this event.
   *
   * @param eventSourceInterface  the event source interface
   */
  public void setEventSourceInterface(
    String eventSourceInterface)
  {
    _eventSourceInterface = eventSourceInterface;
  }

  /**
   * Returns the event source interface for this event.
   *
   * @return  the event source interface
   */
  public String getEventSourceInterface()
  {
    return _eventSourceInterface;
  }

  private String _description;
  private String _eventType;
  private String _eventClass;
  private String _eventListenerClass;
  private String _eventSourceInterface;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven2-plugins/myfaces-faces-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/faces/parse/EventBean.java [26:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class EventBean extends ObjectBean
{
  public String getEventName()
  {
    return Util.getEventNameFromEventType(_eventType);
  }

  /**
   * Sets the description of this property.
   *
   * @param description  the property description
   */
  public void setDescription(
    String description)
  {
    _description = description;
  }

  /**
   * Returns the description of this property.
   *
   * @return  the property description
   */
  public String getDescription()
  {
    return _description;
  }

  /**
   * Sets the event type for this event.
   *
   * @param eventType  the event type
   */
  public void setEventType(
    String eventType)
  {
    _eventType = eventType;
  }

  /**
   * Returns the event type for this event.
   *
   * @return  the event type
   */
  public String getEventType()
  {
    return _eventType;
  }

  /**
   * Sets the event class for this event.
   *
   * @param eventName  the event class
   */
  public void setEventClass(
    String eventClass)
  {
    _eventClass = eventClass;
  }

  /**
   * Returns the event class for this event.
   *
   * @return  the event class
   */
  public String getEventClass()
  {
    return _eventClass;
  }

  /**
   * Sets the event listener class for this event.
   *
   * @param eventListenerClass  the event listener class
   */
  public void setEventListenerClass(
    String eventListenerClass)
  {
    _eventListenerClass = eventListenerClass;
  }

  /**
   * Returns the event listener class for this event.
   *
   * @return  the event listener class
   */
  public String getEventListenerClass()
  {
    return _eventListenerClass;
  }

  /**
   * Sets the event source interface for this event.
   *
   * @param eventSourceInterface  the event source interface
   */
  public void setEventSourceInterface(
    String eventSourceInterface)
  {
    _eventSourceInterface = eventSourceInterface;
  }

  /**
   * Returns the event source interface for this event.
   *
   * @return  the event source interface
   */
  public String getEventSourceInterface()
  {
    return _eventSourceInterface;
  }

  private String _description;
  private String _eventType;
  private String _eventClass;
  private String _eventListenerClass;
  private String _eventSourceInterface;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



