You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
529 B
Java
30 lines
529 B
Java
// MUXMedium.java
|
|
|
|
package protocol; // protocol package
|
|
|
|
import support.*; // import Jasper support classes
|
|
|
|
/**
|
|
This is the class that defines the channel between (de)multiplexers.
|
|
|
|
@author Kenneth J. Turner
|
|
@version 1.0 (20th July 2010): initial version
|
|
*/
|
|
|
|
public class MUXMedium extends Medium {
|
|
|
|
/** Medium name */
|
|
private final static String NAME = "Channel";
|
|
|
|
/**
|
|
Gets the medium name.
|
|
|
|
@return medium name
|
|
*/
|
|
public String getName() {
|
|
return(NAME);
|
|
}
|
|
|
|
}
|
|
|