001/* [{
002Copyright 2007, 2008 Nicolas Carranza <nicarran at gmail.com>
003
004This file is part of jpen.
005
006jpen is free software: you can redistribute it and/or modify
007it under the terms of the GNU Lesser General Public License as published by
008the Free Software Foundation, either version 3 of the License,
009or (at your option) any later version.
010
011jpen is distributed in the hope that it will be useful,
012but WITHOUT ANY WARRANTY; without even the implied warranty of
013MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014GNU Lesser General Public License for more details.
015
016You should have received a copy of the GNU Lesser General Public License
017along with jpen.  If not, see <http://www.gnu.org/licenses/>.
018}] */
019package jpen.event;
020
021import jpen.PKindEvent;
022import jpen.PLevelEvent;
023import jpen.PScrollEvent;
024import jpen.PButtonEvent;
025
026public class PenAdapter
027        implements PenListener {
028        //@Override
029        public void penKindEvent(PKindEvent ev) {}
030        //@Override
031        public void penLevelEvent(PLevelEvent ev) {}
032        //@Override
033        public void penButtonEvent(PButtonEvent ev) {}
034        //@Override
035        public void penScrollEvent(PScrollEvent ev) {}
036        //@Override
037        public void penTock(long availableMillis) {}
038}