All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.epics.ca.ChannelDescriptor Maven / Gradle / Ivy

There is a newer version: 999.999.999
Show newest version
package org.epics.ca;
public class ChannelDescriptor {

	private String name;
	protected Class type;
	protected Boolean monitored = false;
	
	public ChannelDescriptor(){
	}
	
	public ChannelDescriptor(String name, Class type){
		this.name = name;
		this.type = type;
	}
	
	public ChannelDescriptor(String name, Class type, boolean monitored){
		this.name = name;
		this.type = type;
		this.monitored = monitored;
	}
	
	public Class getType() {
		return type;
	}

	public void setType(Class type) {
		this.type = type;
	}

	public Boolean getMonitored() {
		return monitored;
	}

	public void setMonitored(Boolean monitored) {
		this.monitored = monitored;
	}

	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy