/*
ItsNat Java Web Application Framework
Copyright (C) 2007 Innowhere Software Services S.L., Spanish Company
Author: Jose Maria Arranz Santamaria
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. See the GNU Affero General Public
License for more details. See the copy of the GNU Affero General Public License
included in this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.itsnat.impl.core.event.client2serv.domext;
import org.itsnat.core.ItsNatException;
import org.itsnat.core.event.DOMExtensionEvent;
import org.itsnat.impl.core.ItsNatServletRequestImpl;
import org.itsnat.impl.core.event.client2serv.*;
import org.itsnat.impl.core.listener.domext.DOMExtensionEventListenerWrapperImpl;
import org.w3c.dom.events.EventTarget;
/**
*
* @author jmarranz
*/
public abstract class DOMExtensionEventImpl extends DOMBasedEventImpl implements DOMExtensionEvent
{
protected long timeStamp = System.currentTimeMillis();
/**
* Creates a new instance of DOMExtensionEventImpl
*/
public DOMExtensionEventImpl(DOMExtensionEventListenerWrapperImpl listenerWrapper,ItsNatServletRequestImpl request)
{
super(listenerWrapper,request);
}
public DOMExtensionEventListenerWrapperImpl getDOMExtensionEventListenerWrapper()
{
return (DOMExtensionEventListenerWrapperImpl)listenerWrapper;
}
public long getTimeStamp()
{
return timeStamp;
}
public EventTarget getTarget()
{
return getCurrentTarget();
}
public short getEventPhase()
{
return AT_TARGET;
}
public boolean getCancelable()
{
return false;
}
public boolean getBubbles()
{
return false;
}
public String getType()
{
return getDOMExtensionEventListenerWrapper().getType();
}
}
|