org.epics.ca.ChannelDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ca Show documentation
Show all versions of ca Show documentation
Java CA client implementation using a new API (not using JCA).
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