Commit 8c901232 authored by Gino Tosti's avatar Gino Tosti
Browse files

made some function public

parent d9fc82ae
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -74,13 +74,13 @@ public class ${Assembly}Impl extends ${Assembly}BaseImpl implements ${Assembly}O
		}	
	}
    
	private void raiseAlarm(int code) {
	public void raiseAlarm(int code) {
		if(m_alarms.isAlarmSet(code)==false) {
				m_alarms.activateAlarm(code);
		}
	}
	
	private void lowerAlarm(int code) {
	public void lowerAlarm(int code) {
		if(m_alarms.isAlarmSet(code)==true) {
			m_alarms.deactivateAlarm(code);
		}
@@ -117,7 +117,7 @@ public class ${Assembly}Impl extends ${Assembly}BaseImpl implements ${Assembly}O
		
	}
	
	private void inizializeAlarm() throws IOException, OnChangeNotSupportedException {
	public void inizializeAlarm() throws IOException, OnChangeNotSupportedException {
		AlarmInformation ainfo = new AlarmInformation();
		ainfo.setAlarmCode(1);
		ainfo.setAlarmActivateCount(1);