|
@@ -12,24 +12,24 @@ public interface BoolCollector {
|
|
* Name of the information that should be collected
|
|
* Name of the information that should be collected
|
|
* @param name name of the collected information
|
|
* @param name name of the collected information
|
|
*/
|
|
*/
|
|
- public void setFCinfoName(String name);
|
|
|
|
|
|
+ public void setBCinfoName(String name);
|
|
|
|
|
|
/**
|
|
/**
|
|
* Return the name of the collected information
|
|
* Return the name of the collected information
|
|
* @return name of the collected information
|
|
* @return name of the collected information
|
|
*/
|
|
*/
|
|
- public String getFCinfoName();
|
|
|
|
|
|
+ public String getBCinfoName();
|
|
|
|
|
|
/**
|
|
/**
|
|
* Return the current value of the collector
|
|
* Return the current value of the collector
|
|
* @return value
|
|
* @return value
|
|
*/
|
|
*/
|
|
- public boolean getFCval();
|
|
|
|
|
|
+ public boolean getBCval();
|
|
|
|
|
|
/**
|
|
/**
|
|
* Set the current value of the collector
|
|
* Set the current value of the collector
|
|
* @param val new value
|
|
* @param val new value
|
|
*/
|
|
*/
|
|
- public void setFCval(boolean val);
|
|
|
|
|
|
+ public void setBCval(boolean val);
|
|
|
|
|
|
}
|
|
}
|