gnu.io.RawPortEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrxtx Show documentation
Show all versions of jrxtx Show documentation
jRxTx is a library for Java serial communication.
/*
* Copyright 1997-2009 by Trent Jarvi and others
* Copyright 1998 Kevin Hester, [email protected]
* Copyright 2016 Fraunhofer ISE and others
*
* This file is part of jRxTx.
* jRxTx is a fork of RXTX originally maintained by Trent Jarvi.
*
* jRxTx is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the License, or
* (at your option) any later version.
*
* jRxTx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with jRxTx. If not, see .
*
*/
package gnu.io;
import java.util.EventObject;
/* Non functional contact [email protected] for details */
public class RawPortEvent extends EventObject {
public static final int DATA_AVAILABLE = 1;
public static final int OUTPUT_BUFFER_EMPTY = 2;
public static final int CTS = 3;
public static final int DSR = 4;
public static final int RI = 5;
public static final int CD = 6;
public static final int OE = 7;
public static final int PE = 8;
public static final int FE = 9;
public static final int BI = 10;
private final boolean OldValue;
private final boolean NewValue;
private final int eventType;
/* public int eventType =0; depricated */
public RawPortEvent(RawPort srcport, int eventtype, boolean oldvalue, boolean newvalue) {
super(srcport);
OldValue = oldvalue;
NewValue = newvalue;
eventType = eventtype;
}
public int getEventType() {
return (eventType);
}
public boolean getNewValue() {
return (NewValue);
}
public boolean getOldValue() {
return (OldValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy