~ubuntu-branches/ubuntu/maverick/rxtx/maverick

« back to all changes in this revision

Viewing changes to src/RS485PortEventListener.java

  • Committer: Bazaar Package Importer
  • Author(s): Scott Howard
  • Date: 2010-06-03 23:19:16 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100603231916-8bapendemannfwau
Tags: 2.2pre2-1
* New upstream release:
  - Fixes JVM crash and UnsatisfiedLinkError/NoClassDefFoundError
    (Closes: #523139) (Closes: #489701)
  - Fixes amd64 support (Closes: #574395)
* Added debian/watch file
* Switched to source format 3.0 (quilt)
  - moved debian changes into patch in debian/patches
* Changed rules to use dh
* Fixed multiple lintian errors and multiple warnings
  - Policy version 3.8.4
* Section moved to java from libs
* Moved to team maintenance: Maintainer: Debian Java maintainers
  - Mario and I moved to uploaders
* DM Uploads Allowed: yes
* Build depends on javahelper
  - Binary depends on ${java:Depends}, use jh_installlibs for versioned
    install
  - Versioned naming of RXTXcomm.jar (Debian java policy)
* Added VCS tags to debian/control
* Libs now install in /usr/lib/jni instead of /usr/lib
* Added doc-base file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Non functional contact taj@www.linux.org.uk for details */
2
 
 
3
 
/*-------------------------------------------------------------------------
4
 
|   rxtx is a native interface to serial ports in java.
5
 
|   Copyright 1997-2004 by Trent Jarvi taj@www.linux.org.uk.
6
 
|
7
 
|   This library is free software; you can redistribute it and/or
8
 
|   modify it under the terms of the GNU Library General Public
9
 
|   License as published by the Free Software Foundation; either
10
 
|   version 2 of the License, or (at your option) any later version.
11
 
|
12
 
|   This library is distributed in the hope that it will be useful,
13
 
|   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
|   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
|   Library General Public License for more details.
16
 
|
17
 
|   You should have received a copy of the GNU Library General Public
18
 
|   License along with this library; if not, write to the Free
19
 
|   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
 
--------------------------------------------------------------------------*/
21
 
package gnu.io;
22
 
import java.util.*;
23
 
 
24
 
/**
25
 
* @author Trent Jarvi
26
 
* @version %I%, %G%
27
 
* @since JDK1.0
28
 
*/
29
 
 
30
 
public interface RS485PortEventListener extends EventListener
31
 
{
32
 
        public abstract void RS485Event( RS485PortEvent ev );
33
 
}