Skip to content
Snippets Groups Projects
Commit 94c3d308 authored by Irina LEE's avatar Irina LEE
Browse files

modified syscamstranslator

parent 1b0a621f
No related branches found
No related tags found
1 merge request!72Syscams
......@@ -65,18 +65,10 @@ public class SysCAMSTBlockDE extends SysCAMSTComponent {
return period;
}
public void setPeriod(int _period) {
period = _period;
}
public String getName() {
return name;
}
public void setBlockDEName(String _name) {
name = _name;
}
public LinkedList<SysCAMSTPortDE> getPortDE(){
return portDE;
}
......
......@@ -72,34 +72,18 @@ public class SysCAMSTBlockTDF extends SysCAMSTComponent {
return period;
}
public void setPeriod(int _period) {
period = _period;
}
public String getProcessCode() {
return processCode;
}
public void setProcessCode(String _processCode) {
processCode = _processCode;
}
public String getName() {
return name;
}
public void setBlockTDFName(String _name) {
name = _name;
}
public SysCAMSTCluster getCluster() {
return cluster;
}
public void setCluster(SysCAMSTCluster _cluster) {
cluster = _cluster;
}
public LinkedList<SysCAMSTPortTDF> getPortTDF(){
return portTDF;
}
......
......@@ -64,10 +64,6 @@ public class SysCAMSTCluster extends SysCAMSTComponent {
return clusterName;
}
public void setClusterName(String _clusterName) {
clusterName = _clusterName;
}
public LinkedList<SysCAMSTBlockTDF> getBlockTDF(){
return blocks;
}
......
......@@ -52,7 +52,4 @@ public class SysCAMSTComponent {
return name;
}
public void setName(String _name) {
name = _name;
}
}
......@@ -63,10 +63,6 @@ public class SysCAMSTConnectingPoint{
return ownerComponent;
}
void setConnector(SysCAMSTConnector _connector) {
ownerConnector = _connector;
}
boolean ConnectingPointIsFree(){
return ownerConnector == null;
}
......
......@@ -73,63 +73,31 @@ public class SysCAMSTPortConverter extends SysCAMSTComponent {
return name;
}
public void setName(String _name) {
name = _name;
}
public int getPeriod() {
return period;
}
public void setPeriod(int _period) {
period = _period;
}
public String getTime() {
return time;
}
public void setTime(String _time) {
time = _time;
}
public int getRate() {
return rate;
}
public void setRate(int _rate) {
rate = _rate;
}
public int getDelay() {
return delay;
}
public void setDelay(int _delay) {
delay = _delay;
}
public int getOrigin() {
return origin;
}
public void setOrigin(int origin) {
this.origin = origin;
}
public String getConvType() {
return ConvType;
}
public void setConvType(String _ConvType) {
ConvType = _ConvType;
}
public SysCAMSTBlockTDF getBlockTDF() {
return blockTDF;
}
public void setBlockTDF(SysCAMSTBlockTDF _blockTDF) {
blockTDF = _blockTDF;
}
}
......@@ -73,63 +73,31 @@ public class SysCAMSTPortDE extends SysCAMSTComponent {
return name;
}
public void setName(String _name) {
name = _name;
}
public int getPeriod() {
return period;
}
public void setPeriod(int _period) {
period = _period;
}
public String getTime() {
return time;
}
public void setTime(String _time) {
time = _time;
}
public int getRate() {
return rate;
}
public void setRate(int _rate) {
rate = _rate;
}
public int getDelay() {
return delay;
}
public void setDelay(int _delay) {
delay = _delay;
}
public int getOrigin() {
return origin;
}
public void setOrigin(int _origin) {
origin = _origin;
}
public String getDEType() {
return DEType;
}
public void setDEType(String _DEType) {
DEType = _DEType;
}
public SysCAMSTBlockDE getBlockTDF() {
return blockDE;
}
public void setBlockDE(SysCAMSTBlockDE _blockDE) {
blockDE = _blockDE;
}
}
......@@ -73,63 +73,31 @@ public class SysCAMSTPortTDF extends SysCAMSTComponent {
return name;
}
public void setName(String _name) {
name = _name;
}
public int getPeriod() {
return period;
}
public void setPeriod(int _period) {
period = _period;
}
public String getTime() {
return time;
}
public void setTime(String _time) {
time = _time;
}
public int getRate() {
return rate;
}
public void setRate(int _rate) {
rate = _rate;
}
public int getDelay() {
return delay;
}
public void setDelay(int _delay) {
delay = _delay;
}
public int getOrigin() {
return origin;
}
public void setOrigin(int _origin) {
origin = _origin;
}
public String getTDFType() {
return TDFType;
}
public void setTDFType(String _TDFType) {
TDFType = _TDFType;
}
public synchronized SysCAMSTBlockTDF getBlockTDF() {
public SysCAMSTBlockTDF getBlockTDF() {
return blockTDF;
}
public synchronized void setBlockTDF(SysCAMSTBlockTDF _blockTDF) {
blockTDF = _blockTDF;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment