link start!
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.honeywell.honeywellXL10NextGen.deviceModes.common.ui;
|
||||
|
||||
public interface ISpyderView {
|
||||
void validateComplete();
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<!--
|
||||
* Copyright (c) 2007 Honeywell International, Inc. All rights reserved.
|
||||
* This file contains trade secrets of Honeywell International, Inc. No part may be reproduced or transmitted in
|
||||
* any form by any means or for any purpose without the express written permission of Honeywell.
|
||||
-->
|
||||
|
||||
<panes version="1">
|
||||
<DiagnosticInput default_text="DiagnosticScreen" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="850.0" h="720">
|
||||
<lb_SelectFBName default_text="Select Function Block" type="javax.baja.ui.BLabel" x="20.0" y="25.0" w="100.0" h="23.0"/>
|
||||
<lb_SelectOutputName default_text="Select Output Points" type="javax.baja.ui.BLabel" x="190.0" y="25.0" w="100.0" h="23.0"/>
|
||||
<lb_watchWindow default_text="WatchWindow" type="javax.baja.ui.BLabel" x="400.0" y="25.0" w="100.0" h="23" />
|
||||
<lb_pointName default_text="PointName" type="javax.baja.ui.BLabel" x="490" y="25" w="80" h="23"/>
|
||||
<lb_simpointName default_text="PointName" type="javax.baja.ui.BLabel" x="460" y="25" w="80" h="23"/>
|
||||
<lb_Blocks default_text="Blocks" type="javax.baja.ui.list.BList" x="20.0" y="50.0" w="150.0" h="310.0" />
|
||||
<lb_Outputs default_text="Outputs" type="javax.baja.ui.list.BList" x="190.0" y="50.0" w="150.0" h="310.0" />
|
||||
<Select default_text="" type="javax.baja.ui.BButton" x="350.0" y="150.0" w="40.0" h="20.0"/>
|
||||
<Deselect default_text="" type="javax.baja.ui.BButton" x="350.0" y="180.0" w="40.0" h="20.0"/>
|
||||
<lb_ScrollPane default_text="" type="javax.baja.ui.pane.BScrollPane" x="400.0" y="50.0" w="160.0" h="310.0" />
|
||||
<lb_Points default_text="Points" type="javax.baja.ui.list.BList" x="400.0" y="50.0" w="160.0" h="310.0" />
|
||||
<!--<lb_selectCheck default_text="SelectAll" type="javax.baja.ui.BCheckBox" x="400.0" y="365.0" w="70.0" h="15.0"/>-->
|
||||
<!--<lb_path default_text="" type="javax.baja.ui.BTextField" x="20" y="390" w="540" h="30" />
|
||||
<lb_ord default_text="" type="javax.baja.ui.BTextField" x="20" y="410" w="540" h="30" />-->
|
||||
<lb_pathLabel default_text="Selected Point Path" type="javax.baja.ui.BLabel" x="20" y="380" w="540" h="50" />
|
||||
<lb_ExpandablePane default_text="" type="javax.baja.ui.pane.BExpandablePane" x="20" y="415" w="540" h="60" />
|
||||
<!-- <lb_Note default_text="Note: Only checked points in the last listbox will be added to watch window." type="javax.baja.ui.BLabel" x="20" y="465" w="400" h="50"/>-->
|
||||
<lb_Note default_text="Note: If more number of points are selected for debugging then performance will degrade" type="javax.baja.ui.BLabel" x="20" y="465" w="450" h="50"/>
|
||||
<!-- <lb_Note1 default_text="Only 14 points can be selcted for debugging." type="javax.baja.ui.BLabel" x="50" y="400" w="370" h="50"/>-->
|
||||
<lb_pane default_text="" type="javax.baja.ui.pane.BGridPane" x="20" y="410" w="100" h="100" />
|
||||
<Help default_text="Help" type="javax.baja.ui.BButton" x="20.0" y="520.0" w="50.0" h="20.0"/>
|
||||
<DiagnosticOk default_text="OK" type="javax.baja.ui.BButton" x="430.0" y="520.0" w="50.0" h="20.0"/>
|
||||
<DiagnosticCancel default_text="Cancel" type="javax.baja.ui.BButton" x="490.0" y="520.0" w="60.0" h="20.0"/>
|
||||
</DiagnosticInput>
|
||||
</panes>
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
package com.honeywell.honeywellXL10NextGen.deviceModes.onlineDebugging.station;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.device.IOnlineNetworkInterfaceHandler;
|
||||
import java.util.ArrayList;
|
||||
import javax.baja.sys.BComponent;
|
||||
|
||||
public interface IODNetworkHandler {
|
||||
public static final int PROXY_MODE_OF_DEBUGGING = 1;
|
||||
public static final int PVID_MODE_OF_DEBUGGING = 0;
|
||||
|
||||
void attachProxyPoints(IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler, BComponent[] bComponentArr);
|
||||
|
||||
void attachProxyToInputPoint(BComponent bComponent, IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler);
|
||||
|
||||
void attachProxyToOutputPoint(BComponent bComponent, IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler);
|
||||
|
||||
void disqualifyOutputPointForOnlineDebugging(BComponent bComponent);
|
||||
|
||||
int getDebugObjectReadTime();
|
||||
|
||||
int getDebugPointReadSize();
|
||||
|
||||
int getDebugPointWriteSize();
|
||||
|
||||
ArrayList getDebugValues(int i, IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler) throws Exception;
|
||||
|
||||
int getModeOfDebugging(BComponent bComponent);
|
||||
|
||||
boolean isAddressInControllerValid(Object obj, IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler) throws Exception;
|
||||
|
||||
void qualifyOutputPointForOnlineDebugging(BComponent bComponent);
|
||||
|
||||
void resetDebugAddressesInController(IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler) throws Exception;
|
||||
|
||||
void setDebugAddressesInController(ArrayList arrayList, IOnlineNetworkInterfaceHandler iOnlineNetworkInterfaceHandler) throws Exception;
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
<panes version="1">
|
||||
<SimModeScreen default_text="SimulationSettings" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="500.0" h="270">
|
||||
<simspeed default_text="Simulation Speed" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="5.0" y="20.0" w="400.0" h="50.0">
|
||||
<rb_asap default_text="Simulate As Fast As Possible" type="javax.baja.ui.BRadioButton" x="10.0" y="20.0" w="160.0" h="20.0"/>
|
||||
<rb_normal default_text="Simulate at the speed of controller" type="javax.baja.ui.BRadioButton" x="200.0" y="20.0" w="300.0" h="20.0"/>
|
||||
</simspeed>
|
||||
<simmode default_text="Simulation Settings" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="5.0" y="80.0" w="400.0" h="50.0">
|
||||
<rb_time default_text="Time Simulation" type="javax.baja.ui.BRadioButton" x="10.0" y="20.0" w="100.0" h="20.0"/>
|
||||
<rb_continuous default_text="Continuous Simulation" type="javax.baja.ui.BRadioButton" x="120.0" y="20.0" w="130.0" h="20.0"/>
|
||||
<rb_step default_text="Step Simulation" type="javax.baja.ui.BRadioButton" x="260.0" y="20.0" w="130.0" h="20.0"/>
|
||||
</simmode>
|
||||
<!--Time Period-->
|
||||
<tp_label default_text="Time Period" type="javax.baja.ui.BLabel" x="35.0" y="140.0" w="75.0" h="20.0" />
|
||||
<!--<tp_textfield default_text="" type="javax.baja.workbench.fieldeditor.BWbFieldEditor" x="140.0" y="80.0" w="125.0" h="30.0" />-->
|
||||
<!--<tp_durationgridpane default_text="" type="javax.baja.ui.pane.BGridPane" x="140.0" y="80.0" w="125.0" h="30.0" />-->
|
||||
<tp_hLabel default_text="Hours:" type="javax.baja.ui.BLabel" x="140.0" y="140.0" w="30.0" h="20.0" />
|
||||
<tp_hours default_text="" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="175.0" y="140.0" w="35.0" h="20.0" />
|
||||
<tp_mLabel default_text="Mins:" type="javax.baja.ui.BLabel" x="215.0" y="140.0" w="25.0" h="20.0" />
|
||||
<tp_minutes default_text="" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="245.0" y="140.0" w="35.0" h="20.0" />
|
||||
<tp_sLabel default_text="Secs:" type="javax.baja.ui.BLabel" x="285.0" y="140.0" w="25.0" h="20.0" />
|
||||
<tp_secs default_text="" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="315.0" y="140.0" w="35.0" h="20.0" />
|
||||
<!--<tp_gridpane1 default_text="" type="javax.baja.ui.pane.BGridPane" x="140.0" y="80.0" w="150.0" h="30.0" />-->
|
||||
<tp_check default_text="" type="javax.baja.ui.BCheckBox" x="10.0" y="178.0" w="15.0" h="20.0" />
|
||||
<tp_label1 default_text="Set Start Time As" type="javax.baja.ui.BLabel" x="35.0" y="178.0" w="90.0" h="20.0" />
|
||||
<tp_label2 default_text="Number Of Steps" type="javax.baja.ui.BLabel" x="35.0" y="140.0" w="95.0" h="20.0" />
|
||||
<!--<tp_fieldeditor default_text="" type="javax.baja.workbench.fieldeditor.BWbFieldEditor" x="140.0" y="90.0" w="100.0" h="30.0" />-->
|
||||
<tp_gridpane default_text="" type="javax.baja.ui.pane.BGridPane" x="118.0" y="175.0" w="300.0" h="30.0" />
|
||||
<tp_NOS default_text="" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="140.0" y="140.0" w="50.0" h="30.0" />
|
||||
<!--<tp_NOS default_text="" type="com.tridium.raster.editor.ui.BIntegerSpinnerField" x="140.0" y="80.0" w="50.0" h="30.0" />-->
|
||||
<bb_IpHelp default_text="Help" type="javax.baja.ui.BButton" x="20.0" y="215.0" w="55.0" h="20.0"/>
|
||||
<bb_IpOk default_text="OK" type="javax.baja.ui.BButton" x="285.0" y="215.0" w="55.0" h="20.0"/>
|
||||
<bb_IpCancel default_text="Cancel" type="javax.baja.ui.BButton" x="345.0" y="215.0" w="55.0" h="20.0"/>
|
||||
</SimModeScreen>
|
||||
</panes>
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.honeywell.honeywellXL10NextGen.factory;
|
||||
|
||||
public interface IFactory {
|
||||
IModelFactory getModelFactory(String str);
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks;
|
||||
|
||||
public interface IFBInfoInterface {
|
||||
String getCategoryTypeForFB(String str);
|
||||
|
||||
String getConfigParameterForFB(String str);
|
||||
|
||||
String getConfigViewForFB(String str);
|
||||
|
||||
String getDescriptionForFB(String str);
|
||||
|
||||
String getFBID(String str, String str2, boolean z);
|
||||
|
||||
String getFBNameFromIndex(String str, int i);
|
||||
|
||||
String getHelpFilePathForFB(String str);
|
||||
|
||||
String getHolidayHelpFilePathForFB(String str);
|
||||
|
||||
String getIconForFB(String str);
|
||||
|
||||
String getLoopStaticForFB(String str);
|
||||
|
||||
String getMaxLimitForFB(String str);
|
||||
|
||||
String getScheduleHelpFilePathForFB(String str);
|
||||
|
||||
String getSimulationForFB(String str);
|
||||
|
||||
String getUploadClass(String str, String str2);
|
||||
|
||||
String getVersionForFB(String str);
|
||||
|
||||
String getViewXmlPathForFB(String str);
|
||||
|
||||
boolean isFBSupported(String str);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks;
|
||||
|
||||
import javax.baja.sys.BComponent;
|
||||
import javax.baja.sys.Slot;
|
||||
|
||||
public interface ISpecialBlock {
|
||||
int checkKnobAddTo(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
|
||||
|
||||
int checkLinkAddFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
|
||||
|
||||
int knobAddedTo(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
|
||||
|
||||
int knobRemovedFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
|
||||
|
||||
int linkAddedFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
|
||||
|
||||
int linkRemovedFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
|
||||
|
||||
void started();
|
||||
|
||||
void stopped();
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
<panes version="1">
|
||||
<Schedule_Pane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.BSchedulePage" icon_path="" x="0.0" y="0.0" w="620.0" h="500.0" default_text="Configure the schedules">
|
||||
<ScheduleSummary type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="0.0" w="600.0" h="320.0" default_text="Schedule Summary"/>
|
||||
<Events type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="330.0" w="295.0" h="150.0" default_text="Events"/>
|
||||
<States type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="315.0" y="330.0" w="295.0" h="150.0" default_text="States"/>
|
||||
<bb_ScheduleHelp default_text="Help" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="20.0" y="500.0" w="60.0" h="25.0"/>
|
||||
<bb_ScheduleOk default_text="Ok" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="470.0" y="500.0" w="60.0" h="25.0"/>
|
||||
<!-- <bb_ScheduleApply default_text="Apply" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="470.0" y="500.0" w="60.0" h="25.0"/> -->
|
||||
<bb_ScheduleCancel default_text="Cancel" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="550.0" y="500.0" w="60.0" h="25.0"/>
|
||||
</Schedule_Pane>
|
||||
<Holidays_Pane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.BHolidayPage" icon_path="" x="0.0" y="0.0" w="600.0" h="500.0" default_text="Configure the list of holidays that the controller will follow">
|
||||
<selectHolPane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="10.0" w="580.0" h="80.0" default_text="Select Holiday as"/>
|
||||
<holConfigurationPane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="120.0" w="580.0" h="350.0" default_text="Configure Holiday">
|
||||
<stDatePane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="60.0" w="200.0" h="220.0" default_text="Start Date"/>
|
||||
<holListPane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="325.0" y="60.0" w="220.0" h="220.0" default_text="Holiday List"/>
|
||||
<addSubPane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="220.0" y="125.0" w="90.0" h="100.0" default_text=""/>
|
||||
<loadUSHoliday type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="427.0" y="280.0" w="120.0" h="20.0" default_text=""/>
|
||||
</holConfigurationPane>
|
||||
<bb_HolidayHelp default_text="Help" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="20.0" y="500.0" w="60.0" h="25.0"/>
|
||||
<bb_HolidayOk default_text="Ok" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="450.0" y="500.0" w="60.0" h="25.0"/>
|
||||
<!-- <bb_HolidayApply default_text="Apply" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="450.0" y="500.0" w="60.0" h="25.0"/> -->
|
||||
<bb_HolidayCancel default_text="Cancel" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BButtonEx" x="530.0" y="500.0" w="60.0" h="25.0"/>
|
||||
</Holidays_Pane>
|
||||
</panes>
|
||||
|
||||
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.compilation;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule;
|
||||
import com.honeywell.honeywellXL10NextGen.sylk.fw.BSylkDeviceStore;
|
||||
import com.honeywell.honeywellXL10NextGen.sylk.fw.SylkLinkTable;
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.device.ISpyderDevice;
|
||||
|
||||
public interface IKFCompiler {
|
||||
void cleanup();
|
||||
|
||||
boolean compileFailDetectTable(SylkLinkTable sylkLinkTable);
|
||||
|
||||
BSylkDeviceStore compileKF(BSBusWallModule bSBusWallModule, SylkLinkTable sylkLinkTable, int i, ISpyderDevice iSpyderDevice);
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.compilation;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule;
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIApplication;
|
||||
import com.honeywell.honeywellXL10NextGen.sylk.fw.BSylkDeviceStore;
|
||||
import java.util.Map;
|
||||
import javax.baja.sys.BBlob;
|
||||
import javax.baja.sys.BVector;
|
||||
|
||||
public interface IKFDeCompiler {
|
||||
void fullDeCompile(BVector bVector, BIApplication bIApplication, Map map, Map map2, Map map3, Map map4, int i);
|
||||
|
||||
void populateDataStore(BSylkDeviceStore bSylkDeviceStore, BBlob[] bBlobArr);
|
||||
|
||||
void quickDeCompile(BVector bVector, BIApplication bIApplication, BSBusWallModule bSBusWallModule);
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.resourceCounter;
|
||||
|
||||
final class a {
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui;
|
||||
|
||||
final class a {
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui;
|
||||
|
||||
final class a {
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui;
|
||||
|
||||
final class b {
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui;
|
||||
|
||||
final class c {
|
||||
}
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
<!--
|
||||
Document : KFSimulationDesign.xml
|
||||
Created on : April 8, 2008
|
||||
Author : Karthik Subramanian
|
||||
Description:
|
||||
This XML document is used to get the UI structure for KF simulation preview screen.
|
||||
-->
|
||||
<!--
|
||||
Modified By: Umesh Kumar
|
||||
Modified On: 21st May 2008
|
||||
Purpose: Changed the size of drop downs shown in home screen details page
|
||||
Version: \main\spyderII_dvpt\8
|
||||
-->
|
||||
<panes version="1">
|
||||
<simulation_pane icon_path="" default_text="SIMULATION_VIEW" type="javax.baja.ui.BWidget" x="0" y="0" w="600" h="500">
|
||||
<bpane_simulationUI type="javax.baja.ui.pane.BBorderPane" x="0.0" y="0.0" w="268.0" h="174.0" default_text="" icon_path="">
|
||||
<lbl_system_cool_icon type="com.tridium.kitpx.BBoundLabel" x="195.0" y="7" w="10.0" h="15.0" default_text="" icon_path=""/>
|
||||
<lbl_system_heat_icon type="com.tridium.kitpx.BBoundLabel" x="207.0" y="7" w="10.0" h="15.0" default_text="" icon_path=""/>
|
||||
<lbl_system_colon type="javax.baja.ui.BLabel" x="32.0" y="4.5" w="50.0" h="15.0" default_text="SYSTEM:" icon_path=""/>
|
||||
<lbl_off type="javax.baja.ui.BLabel" x="74.0" y="4.5" w="25.0" h="15.0" default_text="OFF" icon_path=""/>
|
||||
<lbl_auto type="javax.baja.ui.BLabel" x="96.0" y="4.5" w="29.0" h="15.0" default_text="AUTO" icon_path=""/>
|
||||
<lbl_cool type="javax.baja.ui.BLabel" x="122.0" y="4.5" w="29.0" h="15.0" default_text="COOL" icon_path=""/>
|
||||
<lbl_em_dot type="javax.baja.ui.BLabel" x="148.0" y="4.5" w="23.0" h="15.0" default_text="EM." icon_path=""/>
|
||||
<lbl_heat type="javax.baja.ui.BLabel" x="165.0" y="4.5" w="28.0" h="15.0" default_text="HEAT" icon_path=""/>
|
||||
<lbl_topLine type="javax.baja.ui.BLabel" x="0.0" y="18.0" w="268.0" h="1.0" default_text="" icon_path=""/>
|
||||
<lbl_left_room type="com.tridium.kitpx.BBoundLabel" x="44.0" y="20.0" w="37.0" h="14.0" default_text="ROOM" icon_path=""/>
|
||||
<lbl_left_setpoint type="com.tridium.kitpx.BBoundLabel" x="80.0" y="20.0" w="56.0" h="14.0" default_text="SETPOINT" icon_path=""/>
|
||||
<bpane_hum_percent type="javax.baja.ui.pane.BBorderPane" x="137.0" y="12.0" w="95.0" h="50.0" default_text="" icon_path="">
|
||||
<lbl_right_humidity type="com.tridium.kitpx.BBoundLabel" x="1.0" y="8.0" w="54.0" h="14.0" default_text="HUMIDITY" icon_path=""/>
|
||||
<lbl_hum_percent type="com.tridium.kitpx.BBoundLabel" x="78.0" y="25.0" w="10.0" h="14.0" default_text="%" icon_path=""/>
|
||||
</bpane_hum_percent>
|
||||
<lbl_right_outside type="com.tridium.kitpx.BBoundLabel" x="193.0" y="20.0" w="50.0" h="14.0" default_text="OUTSIDE" icon_path=""/>
|
||||
<lbl_override type="javax.baja.ui.BLabel" x="17.0" y="70.0" w="52.0" h="14.0" default_text="OVERRIDE" icon_path=""/>
|
||||
<lbl_middle_room type="com.tridium.kitpx.BBoundLabel" x="95.0" y="70.0" w="37.0" h="14.0" default_text="ROOM" icon_path=""/>
|
||||
<lbl_middle_setpoint type="com.tridium.kitpx.BBoundLabel" x="131.0" y="70.0" w="55.0" h="14.0" default_text="SETPOINT" icon_path=""/>
|
||||
<lbl_middle_temperature type="com.tridium.kitpx.BBoundLabel" x="185.0" y="70.0" w="82.0" h="14.0" default_text="TEMPERATURE" icon_path=""/>
|
||||
<lbl_remaining type="javax.baja.ui.BLabel" x="10.0" y="82.0" w="58.0" h="14.0" default_text="REMAINING" icon_path=""/>
|
||||
<lbl_percent_sym type="com.tridium.kitpx.BBoundLabel" x="182.0" y="83.0" w="12.0" h="10.0" default_text="%" icon_path=""/>
|
||||
<lbl_ppm type="com.tridium.kitpx.BBoundLabel" x="193.0" y="83.0" w="22.0" h="10.0" default_text="PPM" icon_path=""/>
|
||||
<lbl_am type="com.tridium.kitpx.BBoundLabel" x="182.0" y="92.0" w="16.0" h="10.0" default_text="AM" icon_path=""/>
|
||||
<lbl_cfm type="com.tridium.kitpx.BBoundLabel" x="196.0" y="92.0" w="22.0" h="10.0" default_text="CFM" icon_path=""/>
|
||||
<lbl_pm type="com.tridium.kitpx.BBoundLabel" x="182.0" y="101.0" w="16.0" h="10.0" default_text="PM" icon_path=""/>
|
||||
<lbl_ls type="com.tridium.kitpx.BBoundLabel" x="195.0" y="101.0" w="21.0" h="10.0" default_text="L/S" icon_path=""/>
|
||||
<lbl_cm type="com.tridium.kitpx.BBoundLabel" x="182.0" y="110.0" w="16.0" h="10.0" default_text="CM" icon_path=""/>
|
||||
<lbl_inch type="com.tridium.kitpx.BBoundLabel" x="182.0" y="119.0" w="26.0" h="10.0" default_text="INCH" icon_path=""/>
|
||||
<lbl_bottomLine type="javax.baja.ui.BLabel" x="0.0" y="134.0" w="268.0" h="1.0" default_text="" icon_path=""/>
|
||||
<lbl_bottom_midline1 type="javax.baja.ui.BLabel" x="91.0" y="134.0" w="1.0" h="80.0" default_text="bottom line" icon_path=""/>
|
||||
<lbl_bottom_midline2 type="javax.baja.ui.BLabel" x="179.0" y="134.0" w="1.0" h="80.0" default_text="bottom line" icon_path=""/>
|
||||
<lbl_left_prev type="javax.baja.ui.BLabel" x="3.0" y="137.0" w="30.0" h="15.0" default_text="PREV" icon_path=""/>
|
||||
<lbl_left_done type="javax.baja.ui.BLabel" x="32.0" y="137.0" w="30.0" h="15.0" default_text="DONE" icon_path=""/>
|
||||
<bPane_left_set_homescreen type="javax.baja.ui.pane.BBorderPane" x="1.0" y="141.0" w="85.0" h="30.0" default_text="" icon_path="">
|
||||
<lbl_left_set type="javax.baja.ui.BLabel" x="3.0" y="3.0" w="25.0" h="15.0" default_text="SET" icon_path=""/>
|
||||
<lbl_left_homescreen type="javax.baja.ui.BLabel" x="3.0" y="13.0" w="75.0" h="15.0" default_text="HOME SCREEN" icon_path=""/>
|
||||
</bPane_left_set_homescreen>
|
||||
<lbl_left_fan type="javax.baja.ui.BLabel" x="32.0" y="147.0" w="30.0" h="15.0" default_text="FAN" icon_path=""/>
|
||||
<lbl_mid_edit type="javax.baja.ui.BLabel" x="92.0" y="137.0" w="30.0" h="15.0" default_text="EDIT" icon_path=""/>
|
||||
<lbl_mid_cancel type="javax.baja.ui.BLabel" x="120.0" y="137.0" w="43.0" h="15.0" default_text="CANCEL" icon_path=""/>
|
||||
<bPane_mid_set_viewmore type="javax.baja.ui.pane.BBorderPane" x="90.0" y="141.0" w="87.0" h="30.0" default_text="" icon_path="">
|
||||
<lbl_mid_set type="javax.baja.ui.BLabel" x="3.0" y="3.0" w="25.0" h="15.0" default_text="SET" icon_path=""/>
|
||||
<lbl_mid_viewmore type="javax.baja.ui.BLabel" x="3.0" y="13.0" w="60.0" h="15.0" default_text="VIEWMORE" icon_path=""/>
|
||||
</bPane_mid_set_viewmore>
|
||||
<lbl_mid_override type="javax.baja.ui.BLabel" x="120.0" y="147.0" w="52.0" h="15.0" default_text="OVERRIDE" icon_path=""/>
|
||||
<lbl_right_next type="javax.baja.ui.BLabel" x="182.0" y="137.0" w="30.0" h="15.0" default_text="NEXT" icon_path=""/>
|
||||
<lbl_right_system type="javax.baja.ui.BLabel" x="210.0" y="137.0" w="45.0" h="15.0" default_text="SYSTEM" icon_path=""/>
|
||||
<lbl_right_and_sym type="javax.baja.ui.BLabel" x="184.0" y="147.0" w="10.0" h="15.0" default_text="AND" icon_path=""/>
|
||||
<lbl_right_viewmore type="javax.baja.ui.BLabel" x="198.0" y="147.0" w="60.0" h="15.0" default_text="VIEW MORE" icon_path=""/>
|
||||
<lbl_right_parameter type="javax.baja.ui.BLabel" x="186.0" y="157.0" w="70.0" h="15.0" default_text="PARAMETERS" icon_path=""/>
|
||||
<alphaNum_segments type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.simulationui.BAlphaNumericSegments" x="60.0" y="38.0" xLength="15.0" yLength="25.0" width="2" gap="2" charSpace="4"/>
|
||||
<numeric_segments type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.simulationui.BNumericSegments" x="71.0" y="89.0" xLength="21" yLength="37.5" width="3" gap="3" charSpace="8"/>
|
||||
<lbl_fan_blade type="com.tridium.kitpx.BBoundLabel" x="5.0" y="105.0" w="25.0" h="25.0" default_text="" icon_path=""/>
|
||||
<lbl_fan_speed1 type="com.tridium.kitpx.BBoundLabel" x="33.0" y="110.0" w="28.0" h="28.0" default_text="" icon_path=""/>
|
||||
<lbl_fan_speed2 type="com.tridium.kitpx.BBoundLabel" x="45.0" y="112.0" w="10.0" h="28.0" default_text="" icon_path=""/>
|
||||
<lbl_fan_speed3 type="com.tridium.kitpx.BBoundLabel" x="49.0" y="110.0" w="10.0" h="28.0" default_text="" icon_path=""/>
|
||||
<lbl_fan_off type="javax.baja.ui.BLabel" x="7.0" y="97.0" w="20.0" h="14.0" default_text="OFF" icon_path=""/>
|
||||
<lbl_fan_auto type="javax.baja.ui.BLabel" x="27.0" y="100.0" w="30.0" h="14.0" default_text="AUTO" icon_path=""/>
|
||||
<lbl_fan_on type="javax.baja.ui.BLabel" x="28.0" y="110.0" w="20.0" h="14.0" default_text="ON" icon_path=""/>
|
||||
<bPane_unocc_outman_segments type="javax.baja.ui.pane.BBorderPane" x="192.0" y="90.0" w="87.0" h="30.0" default_text="" icon_path="">
|
||||
<lbl_override_out_man type="com.tridium.kitpx.BBoundLabel" x="30.0" y="6.0" w="15.0" h="15.0" default_text="" icon_path=""/>
|
||||
<lbl_override_unocc_label type="javax.baja.ui.BLabel" x="3.0" y="15.0" w="20.0" h="14.0" default_text="UN" icon_path=""/>
|
||||
</bPane_unocc_outman_segments>
|
||||
<bPane_occ_house_segments type="javax.baja.ui.pane.BBorderPane" x="209.0" y="80.0" w="87.0" h="40.0" default_text="" icon_path="">
|
||||
<lbl_override_house_sym type="com.tridium.kitpx.BBoundLabel" x="23.0" y="7.0" w="30.0" h="20.0" default_text="" icon_path=""/>
|
||||
<lbl_override_occupied type="javax.baja.ui.BLabel" x="0.0" y="25.0" w="60.0" h="15.0" default_text="OCCUPIED" icon_path=""/>
|
||||
</bPane_occ_house_segments>
|
||||
<lbl_override_occ_in_man type="com.tridium.kitpx.BBoundLabel" x="240.0" y="98.0" w="15.0" h="15.0" default_text="" icon_path=""/>
|
||||
<bPane_colon type="javax.baja.ui.pane.BBorderPane" x="121.5" y="93.25" w="9.0" h="25" default_text="" icon_path="">
|
||||
<lbl_colon1 type="javax.baja.ui.BLabel" x="3.0" y="3.0" w="3.0" h="3.0" default_text="colon1" icon_path=""/>
|
||||
<lbl_colon2 type="javax.baja.ui.BLabel" x="3.0" y="17.0" w="3.0" h="3.0" default_text="colon2" icon_path=""/>
|
||||
</bPane_colon>
|
||||
<lbl_override_standby type="javax.baja.ui.BLabel" x="214.0" y="119.0" w="50.0" h="14.0" default_text="STANDBY" icon_path=""/>
|
||||
<ldd_left_home_option type="javax.baja.ui.BListDropDown" x="15.0" y="38.0" w="115.0" h="18.0" default_text="LeftHomeScreenOption" icon_path=""/>
|
||||
<lbl_left_home_label type="javax.baja.ui.BLabel" x="25.0" y="55.0" w="70.0" h="14.0" default_text="(max 3 digits)" icon_path=""/>
|
||||
<ldd_right_home_option type="javax.baja.ui.BListDropDown" x="140.0" y="38.0" w="115.0" h="18.0" default_text="RightHomeScreenOption" icon_path=""/>
|
||||
<lbl_right_home_label type="javax.baja.ui.BLabel" x="150.0" y="55.0" w="70.0" h="14.0" default_text="(max 3 digits)" icon_path=""/>
|
||||
<ldd_mid_home_option type="javax.baja.ui.BListDropDown" x="65.0" y="95.0" w="115.0" h="18.0" default_text="MiddleHomeScreenOption" icon_path=""/>
|
||||
<lbl_mid_home_label type="javax.baja.ui.BLabel" x="90.0" y="112.0" w="70.0" h="14.0" default_text="(max 4 digits)" icon_path=""/>
|
||||
<lbl_single_home_label type="javax.baja.ui.BLabel" x="15.0" y="38.0" w="110.0" h="14.0" default_text="Label(max 8 chars):" icon_path=""/>
|
||||
<tf_single_home_text type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="130.0" y="38.0" w="80.0" h="16.0" default_text="" icon_path=""/>
|
||||
</bpane_simulationUI>
|
||||
<bt_left_button type="javax.baja.ui.BButton" x="0.0" y="179.0" w="89.0" h="25.0" default_text="" icon_path=""/>
|
||||
<bt_middle_button type="javax.baja.ui.BButton" x="90.0" y="179.0" w="89.0" h="25.0" default_text="" icon_path=""/>
|
||||
<bt_right_button type="javax.baja.ui.BButton" x="180.0" y="179.0" w="89.0" h="25.0" default_text="" icon_path=""/>
|
||||
</simulation_pane>
|
||||
</panes>
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
<panes version="1">
|
||||
<Override_Details type="javax.baja.ui.BWidget" x="361.0" y="120.0" w="100.0" h="30.0" default_text="override_details" icon_path="">
|
||||
<Override_Type_Dlg_Type type="javax.baja.ui.BLabel" x="10.0" y="0.0" w="75.0" h="30.0" default_text="Override Type:" icon_path=""/>
|
||||
<Override_Type_Dlg_Cont_Rdo type="javax.baja.ui.BRadioButton" x="95.0" y="0.0" w="175.0" h="20.0" default_text="Continuous Override" icon_path=""/>
|
||||
<Override_Type_Dlg_Timed_Hours_Rdo type="javax.baja.ui.BRadioButton" x="95.0" y="20.0" w="185.0" h="20.0" default_text="Timed Override In Hours (Bypass)" icon_path=""/>
|
||||
<Override_Type_Dlg_Timed_Days_Rdo type="javax.baja.ui.BRadioButton" x="95.0" y="40.0" w="185.0" h="20.0" default_text="Timed Override In Days (Bypass)" icon_path=""/>
|
||||
<Timed_Override_Details type="javax.baja.ui.pane.BBorderPane" x="10.0" y="70.0" w="354.0" h="160.0" default_text="Timed Override Details" icon_path="">
|
||||
<Network_Bypass_Time type="javax.baja.ui.BCheckBox" x="10.0" y="15.0" w="200.0" h="30.0" default_text="Use Network Bypass Time Only" icon_path=""/>
|
||||
<lbl_Min_Time type="javax.baja.ui.BLabel" x="10.0" y="35.0" w="80.0" h="30.0" default_text="Minimum Time:" icon_path=""/>
|
||||
<lbl_Min_Days type="javax.baja.ui.BLabel" x="30.0" y="55.0" w="30.0" h="30.0" default_text="Days:" icon_path=""/>
|
||||
<spinner_Min_Days type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHoneywellSpinner" x="60.0" y="60.0" w="50.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<lbl_Min_Hours type="javax.baja.ui.BLabel" x="120.0" y="55.0" w="45.0" h="30.0" default_text="Hours:" icon_path=""/>
|
||||
<spinner_Min_Hours type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHoneywellSpinner" x="160.0" y="60.0" w="50.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<lbl_Min_Minutes type="javax.baja.ui.BLabel" x="215.0" y="55.0" w="50.0" h="30.0" default_text="Minutes:" icon_path=""/>
|
||||
<spinner_Min_Minutes type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHoneywellSpinner" x="260.0" y="60.0" w="50.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<lbl_Max_Time type="javax.baja.ui.BLabel" x="10.0" y="80.0" w="80.0" h="30.0" default_text="Maximum Time:" icon_path=""/>
|
||||
<lbl_Max_Days type="javax.baja.ui.BLabel" x="30.0" y="100.0" w="30.0" h="30.0" default_text="Days:" icon_path=""/>
|
||||
<spinner_Max_Days type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHoneywellSpinner" x="60.0" y="105.0" w="50.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<lbl_Max_Hours type="javax.baja.ui.BLabel" x="120.0" y="100.0" w="45.0" h="30.0" default_text="Hours:" icon_path=""/>
|
||||
<spinner_Max_Hours type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHoneywellSpinner" x="160.0" y="105.0" w="50.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<lbl_Max_Minutes type="javax.baja.ui.BLabel" x="215.0" y="100.0" w="50.0" h="30.0" default_text="Minutes:" icon_path=""/>
|
||||
<spinner_Max_Minutes type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHoneywellSpinner" x="260.0" y="105.0" w="50.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Override_Type_Dlg_Note type="javax.baja.ui.BLabel" x="2.0" y="130.0" w="353.0" h="30.0" default_text=" Note: One 'Day' is a 24 hour period from the time the override is initiated." icon_path=""/>
|
||||
</Timed_Override_Details>
|
||||
<Override_Details_OK type="javax.baja.ui.BButton" x="125.0" y="245.0" w="50.0" h="25.0" default_text="OK" icon_path=""/>
|
||||
<Override_Details_Cancel type="javax.baja.ui.BButton" x="185.0" y="245.0" w="50.0" h="25.0" default_text="Cancel" icon_path=""/>
|
||||
</Override_Details>
|
||||
</panes>
|
||||
+450
@@ -0,0 +1,450 @@
|
||||
<panes version="1">
|
||||
<General_Settings_pane icon_path="" default_text="WIZARD_VIEW" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BGeneralSettingsPane" x="0" y="0" w="600" h="600">
|
||||
<General_Settings_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="150.0" h="30.0" default_text="General Settings" icon_path=""/>
|
||||
<General_Settings_topLine type="javax.baja.ui.BLabel" x="0.0" y="25.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Block_Name type="javax.baja.ui.BLabel" x="0.0" y="37.0" w="70.0" h="20.0" default_text="Block Name:" icon_path=""/>
|
||||
<Block_Type type="javax.baja.ui.BLabel" x="0.0" y="62.0" w="70.0" h="20.0" default_text="Block Type:" icon_path=""/>
|
||||
<Block_Name_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="120.0" y="37.0" w="200.0" h="20.0" default_text="New_Custom_Application" icon_path=""/>
|
||||
<Block_Type_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="120.0" y="62.0" w="200.0" h="20.0" default_text="WallModule" icon_path=""/>
|
||||
<Wall_Module_Model type="javax.baja.ui.pane.BBorderPane" x="0.0" y="87.0" w="560.0" h="95.0" default_text="Wall Module Model Selection" icon_path="">
|
||||
<!-- <Wall_Module_Types type="javax.baja.ui.BLabel" x="8.0" y="13.0" w="100.0" h="20.0" default_text="Wall Module Types:" icon_path=""/>
|
||||
<Wall_Module_Type_Options type="javax.baja.ui.BListDropDown" x="125.0" y="13.0" w="200.0" h="20.0" default_text="Temperature_Humidity_Co2" icon_path=""/>
|
||||
<Model_Options type="javax.baja.ui.BLabel" x="50.0" y="36.0" w="100.0" h="20.0" default_text="Model Options:" icon_path=""/>
|
||||
<Lcd_Display type="javax.baja.ui.BCheckBox" x="146.0" y="36.0" w="80.0" h="20.0" default_text="LCD display" icon_path=""/>
|
||||
<Two_Wire type="javax.baja.ui.BCheckBox" x="240.0" y="36.0" w="200.0" h="20.0" default_text="2-wire(Sensor Bus) Communication" icon_path=""/> -->
|
||||
<Mode_Selection type="javax.baja.ui.BLabel" x="8.0" y="13.0" w="100.0" h="20.0" default_text="Select Model:" icon_path=""/>
|
||||
<Model_type type="javax.baja.ui.BListDropDown" x="120.0" y="13.0" w="300.0" h="20.0" default_text="" icon_path=""/>
|
||||
</Wall_Module_Model>
|
||||
<Selected_Model type="javax.baja.ui.BLabel" x="1.0" y="347.0" w="400.0" h="30.0" default_text="" icon_path=""/>
|
||||
<Model_Capabilities type="javax.baja.ui.BLabel" x="120.0" y="367.0" w="90.0" h="30.0" default_text="Model Capabilities:" icon_path="local:|module://lonhoneywellAXWizards/icons/output.png"/>
|
||||
<icon type="com.tridium.kitpx.BBoundLabel" x="1.0" y="365.0" w="110.0" h="150.0" default_text="" icon_path=""/>
|
||||
<Feature type="javax.baja.ui.BLabel" x="120.0" y="400.0" w="200.0" h="90.0" default_text="" icon_path=""/>
|
||||
<!--<Feature2 type="javax.baja.ui.BLabel" x="175.0" y="380.0" w="190.0" h="30.0" default_text="-2-wire(Sensor Bus) communication" icon_path=""/>
|
||||
<Feature3 type="javax.baja.ui.BLabel" x="175.0" y="395.0" w="145.0" h="30.0" default_text="-Configurable LCD display" icon_path=""/>
|
||||
<Feature4 type="javax.baja.ui.BLabel" x="175.0" y="410.0" w="115.0" h="30.0" default_text="-Navigation keypad" icon_path=""/>
|
||||
<Feature5 type="javax.baja.ui.BLabel" x="175.0" y="425.0" w="90.0" h="30.0" default_text="-Scroll keypad" icon_path=""/>
|
||||
<Feature6 type="javax.baja.ui.BLabel" x="175.0" y="440.0" w="115.0" h="30.0" default_text="-LON network jack" icon_path=""/>
|
||||
<Feature7 type="javax.baja.ui.BLabel" x="175.0" y="455.0" w="100.0" h="30.0" default_text="-Honeywell logo" icon_path=""/>-->
|
||||
<Replacable_pane type="javax.baja.ui.pane.BBorderPane" x="1.0" y="190.0" w="560.0" h="100.0" default_text="" icon_path="">
|
||||
<Wall_Module_Address type="javax.baja.ui.BLabel" x="0.0" y="5.0" w="110.0" h="20.0" default_text="Wall Module Address:" icon_path=""/>
|
||||
<Wall_Module_Address_Options type="javax.baja.ui.BListDropDown" x="120.0" y="5.0" w="50.0" h="20.0" default_text="One" icon_path=""/>
|
||||
<Time_Display_Format type="javax.baja.ui.BLabel" x="0.0" y="30.0" w="110.0" h="20.0" default_text="Time Display Format:" icon_path=""/>
|
||||
<Time_Display_Format_Options type="javax.baja.ui.BListDropDown" x="120.0" y="30.0" w="100.0" h="20.0" default_text="One" icon_path=""/>
|
||||
</Replacable_pane>
|
||||
<Replacable_pane1 type="javax.baja.ui.pane.BBorderPane" x="1.0" y="190.0" w="560.0" h="100.0" default_text="Application Selection" icon_path="">
|
||||
<Application_Type type="javax.baja.ui.BLabel" x="2.0" y="12.0" w="100.0" h="20.0" default_text="Application Type:" icon_path=""/>
|
||||
<Application_Type_Options type="javax.baja.ui.BListDropDown" x="120.0" y="12.0" w="200.0" h="20.0" default_text="Temperature_Humidity_Co2" icon_path=""/>
|
||||
<Select_Application type="javax.baja.ui.BLabel" x="20.0" y="38.0" w="100.0" h="20.0" default_text="Select Application:" icon_path=""/>
|
||||
<Select_Application_Options type="javax.baja.ui.BListDropDown" x="140.0" y="38.0" w="200.0" h="20.0" default_text="New_Custom_Application1" icon_path=""/>
|
||||
<Browse type="javax.baja.ui.BButton" x="350.0" y="38.0" w="80.0" h="20.0" default_text="Browse" icon_path=""/>
|
||||
<Click_Customize_To_Configure type="javax.baja.ui.BLabel" x="105.0" y="61.0" w="250.0" h="20.0" default_text="Click customize if you want to view or modify" icon_path=""/>
|
||||
<Click_Customize_To_Configure1 type="javax.baja.ui.BLabel" x="115.0" y="74.0" w="250.0" h="20.0" default_text="how the LCD display model is configured" icon_path=""/>
|
||||
<Customize type="javax.baja.ui.BButton" x="350.0" y="67.0" w="80.0" h="20.0" default_text="Customize" icon_path=""/>
|
||||
</Replacable_pane1>
|
||||
<Replacing_pane type="javax.baja.ui.pane.BBorderPane" x="5.0" y="185.0" w="560.0" h="130.0" default_text="" icon_path="">
|
||||
<Override_Type type="javax.baja.ui.BLabel" x="0.0" y="15.0" w="80.0" h="25.0" default_text="Override Type" icon_path=""/>
|
||||
<Override type="javax.baja.ui.BListDropDown" x="115.0" y="15.0" w="200.0" h="20.0" default_text="Override_Disabled" icon_path=""/>
|
||||
<Bypass_Time_Source type="javax.baja.ui.pane.BBorderPane" x="5.0" y="45.0" w="500.0" h="75.0" default_text="Bypass Time Source" icon_path="">
|
||||
<Fixed_Parameter type="javax.baja.ui.BRadioButton" x="10.0" y="20.0" w="100.0" h="20.0" default_text="Fixed Parameter" icon_path=""/>
|
||||
<Variable_Input type="javax.baja.ui.BRadioButton" x="10.0" y="45.0" w="100.0" h="20.0" default_text="Variable Input" icon_path=""/>
|
||||
<Time_In_Minutes type="javax.baja.ui.BLabel" x="200.0" y="20.0" w="100.0" h="20.0" default_text="Time In Minutes:" icon_path=""/>
|
||||
<Time_In_Minutes_Text type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="300.0" y="20.0" w="100.0" h="30.0" default_text="Text Field for time" icon_path=""/>
|
||||
</Bypass_Time_Source>
|
||||
</Replacing_pane>
|
||||
<Line2 type="javax.baja.ui.BLabel" x="0.0" y="350.0" w="600.0" h="1.0" default_text="" icon_path=""/>
|
||||
<Line1 type="javax.baja.ui.BLabel" x="0.0" y="600.0" w="700.0" h="1.0" default_text="" icon_path=""/>
|
||||
</General_Settings_pane>
|
||||
<Categories_Parameter_pane icon_path="" default_text="Categories and Parameter" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BCategoriesAndParameterPane" x="0" y="0" w="600" h="600">
|
||||
<Categories_Parameter_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="180.0" h="30.0" default_text="Categories and Parameters" icon_path=""/>
|
||||
<Categories_Parameter_topLine type="javax.baja.ui.BLabel" x="0.0" y="25.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Categories_Parameter_treeLabel type="javax.baja.ui.BLabel" x="0.0" y="30.0" w="280.0" h="15.0" default_text="Categories and Parameters Available in the Wall Module" icon_path=""/>
|
||||
<tree_pane type="javax.baja.ui.pane.BBorderPane" x="1.0" y="45.0" w="330.0" h="120.0" default_text="" icon_path=""/>
|
||||
<Category_Scr_Add_Category type="javax.baja.ui.BButton" x="0.0" y="170.0" w="90.0" h="25.0" default_text="Add Category" icon_path=""/>
|
||||
<Category_Scr_Add_Parameter type="javax.baja.ui.BButton" x="100.0" y="170.0" w="90.0" h="25.0" default_text="Add Parameter" icon_path=""/>
|
||||
<Category_Scr_Edit_Btn type="javax.baja.ui.BButton" x="200.0" y="170.0" w="60.0" h="25.0" default_text="Edit" icon_path=""/>
|
||||
<Category_Scr_Remove_Btn type="javax.baja.ui.BButton" x="270.0" y="170.0" w="65.0" h="25.0" default_text="Remove" icon_path=""/>
|
||||
<Category_Scr_Up_Btn type="javax.baja.ui.BButton" x="340.0" y="70.0" w="30.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Category_Scr_Down_Btn type="javax.baja.ui.BButton" x="340.0" y="95.0" w="30.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Up_Down_label type="javax.baja.ui.BLabel" x="380.0" y="52.0" w="150.0" h="100.0" default_text="" icon_path=""/>
|
||||
<Category_Preview_Line type="javax.baja.ui.BLabel" x="0.0" y="275.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Preview_Label type="javax.baja.ui.BLabel" x="0.0" y="280.0" w="250.0" h="15.0" default_text="Preview:" icon_path=""/>
|
||||
<Category_Details type="javax.baja.ui.pane.BBorderPane" x="0.0" y="200.0" w="400.0" h="155.0" default_text="Category Details" icon_path="">
|
||||
<Category_Name type="javax.baja.ui.BLabel" x="10.0" y="17.0" w="80.0" h="15.0" default_text="Category Name:" icon_path=""/>
|
||||
<Category_Name1 type="javax.baja.ui.BLabel" x="10.0" y="30.0" w="95.0" h="15.0" default_text="(max 8 characters)" icon_path=""/>
|
||||
<Category_Description type="javax.baja.ui.BLabel" x="10.0" y="53.0" w="60.0" h="15.0" default_text="Description:" icon_path=""/>
|
||||
<Category_Number_Of_Parameters type="javax.baja.ui.BLabel" x="10.0" y="83.0" w="50.0" h="15.0" default_text="Number of" icon_path=""/>
|
||||
<Category_Number_Of_Parameters1 type="javax.baja.ui.BLabel" x="10.0" y="97.0" w="60.0" h="15.0" default_text="Parameters:" icon_path=""/>
|
||||
<Category_Name_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="120.0" y="23.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Category_Description_Txt type="javax.baja.ui.BTextField" x="120.0" y="53.0" w="260.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Category_Number_Of_Parameters_Txt type="javax.baja.ui.BLabel" x="120.0" y="85.0" w="50.0" h="15.0" default_text="" icon_path=""/>
|
||||
<Category_Details_Add_Save type="javax.baja.ui.BButton" x="5.0" y="130.0" w="50.0" h="20.0" default_text="Save" icon_path=""/>
|
||||
<Category_Details_Add_Cancel type="javax.baja.ui.BButton" x="60.0" y="130.0" w="50.0" h="20.0" default_text="Cancel" icon_path=""/>
|
||||
<Category_Details_Edit_Save type="javax.baja.ui.BButton" x="5.0" y="130.0" w="50.0" h="20.0" default_text="Save" icon_path=""/>
|
||||
<Category_Details_Edit_Cancel type="javax.baja.ui.BButton" x="60.0" y="130.0" w="50.0" h="20.0" default_text="Cancel" icon_path=""/>
|
||||
|
||||
</Category_Details>
|
||||
<Parameter_Details type="javax.baja.ui.pane.BBorderPane" x="0.0" y="200.0" w="550.0" h="336.0" default_text="Parameter Details" icon_path="">
|
||||
<Parameter_Name type="javax.baja.ui.BLabel" x="10.0" y="14.0" w="85.0" h="15.0" default_text="Parameter Name:" icon_path=""/>
|
||||
<Parameter_Name_1 type="javax.baja.ui.BLabel" x="10.0" y="25.0" w="92.0" h="15.0" default_text="(max 8 characters)" icon_path=""/>
|
||||
<Parameter_Name_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="110.0" y="17.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Viewable_By_Tenant type="javax.baja.ui.BCheckBox" x="225.0" y="17.0" w="120.0" h="15.0" default_text="Viewable by Tenant" icon_path=""/>
|
||||
<Editable_By_Tenant type="javax.baja.ui.BCheckBox" x="355.0" y="17.0" w="120.0" h="15.0" default_text="Editable by Tenant" icon_path=""/>
|
||||
<Parameter_Description type="javax.baja.ui.BLabel" x="10.0" y="40.0" w="60.0" h="15.0" default_text="Description:" icon_path=""/>
|
||||
<Parameter_Description_Txt type="javax.baja.ui.BTextField" x="110.0" y="40.0" w="400.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Parameter_Type type="javax.baja.ui.BLabel" x="10.0" y="65.0" w="85.0" h="15.0" default_text="Parameter Type :" icon_path=""/>
|
||||
<Parameter_Type_DrpDown type="javax.baja.ui.BListDropDown" x="110.0" y="63.0" w="280.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Number_Of_Decimals type="javax.baja.ui.BLabel" x="10.0" y="110.0" w="55.0" h="15.0" default_text="Number Of " icon_path=""/>
|
||||
<Number_Of_Decimals_Txt1 type="javax.baja.ui.BLabel" x="10.0" y="120.0" w="45.0" h="15.0" default_text="Decimals:" icon_path=""/>
|
||||
<Number_Of_Decimals_DrpDown type="javax.baja.ui.BListDropDown" x="110.0" y="112.0" w="40.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Increment_Decrement type="javax.baja.ui.BLabel" x="10.0" y="140.0" w="50.0" h="15.0" default_text="Increment" icon_path=""/>
|
||||
<Increment_Decrement_Txt1 type="javax.baja.ui.BLabel" x="10.0" y="150.0" w="60.0" h="15.0" default_text="/Decrement:" icon_path=""/>
|
||||
<Increment_Decrement_DrpDown type="javax.baja.ui.BListDropDown" x="110.0" y="141.0" w="75.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Default_Value type="javax.baja.ui.BLabel" x="10.0" y="175.0" w="68.0" h="15.0" default_text="Default Value:" icon_path=""/>
|
||||
<Default_Value_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="175.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Default_Value_Txt_Val_WM type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="175.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Low_Limit_1 type="javax.baja.ui.BLabel" x="10.0" y="200.0" w="48.0" h="15.0" default_text="Low Limit:" icon_path=""/>
|
||||
<High_Limit_1 type="javax.baja.ui.BLabel" x="10.0" y="227.0" w="50.0" h="15.0" default_text="High Limit:" icon_path=""/>
|
||||
<Low_Limit_Txt_1 type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="198.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Low_Limit_1_Browse_Btn type="javax.baja.ui.BButton" x="210.0" y="198.0" w="65.0" h="20.0" default_text="Browse" icon_path=""/>
|
||||
|
||||
|
||||
<High_Limit_Txt_1 type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="227.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<High_Limit_1_Browse_Btn type="javax.baja.ui.BButton" x="210.0" y="227.0" w="65.0" h="20.0" default_text="Browse" icon_path=""/>
|
||||
|
||||
<Allow_Null_Value_Chk type="javax.baja.ui.BCheckBox" x="400.0" y="63.0" w="250.0" h="15.0" default_text="Allow null value" icon_path=""/>
|
||||
<Low_Limit_1_Dynamic_Value type="javax.baja.ui.BLabel" x="10.0" y="175.0" w="48.0" h="15.0" default_text="Low Limit:" icon_path=""/>
|
||||
<High_Limit_1_Dynamic_Value type="javax.baja.ui.BLabel" x="10.0" y="197.0" w="50.0" h="15.0" default_text="High Limit:" icon_path=""/>
|
||||
<Low_Limit_Txt_1_Dynamic_Value type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="174.0" w="40.0" h="25.0" default_text="Default Text" icon_path=""/>
|
||||
<High_Limit_Txt_1_Dynamic_Value type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="197.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Allow_Null_Value_Chk_Dynamic_Value type="javax.baja.ui.BCheckBox" x="400.0" y="63.0" w="100.0" h="15.0" default_text="Allow null value" icon_path=""/>
|
||||
<Parameter_Details_Save_On_Add type="javax.baja.ui.BButton" x="5.0" y="300.0" w="50.0" h="25.0" default_text="Save" icon_path=""/>
|
||||
<Parameter_Details_Cancel_On_Add type="javax.baja.ui.BButton" x="60.0" y="300.0" w="50.0" h="25.0" default_text="Cancel" icon_path=""/>
|
||||
<Parameter_Details_Save_On_Edit type="javax.baja.ui.BButton" x="5.0" y="300.0" w="50.0" h="25.0" default_text="Save" icon_path=""/>
|
||||
<Parameter_Details_Cancel_On_Edit type="javax.baja.ui.BButton" x="60.0" y="300.0" w="50.0" h="25.0" default_text="Cancel" icon_path=""/>
|
||||
<Default_Sensor_Offset_Value type="javax.baja.ui.BLabel" x="10.0" y="140.0" w="70.0" h="15.0" default_text="Default Sensor" icon_path=""/>
|
||||
<Default_Sensor_Offset_Value1 type="javax.baja.ui.BLabel" x="10.0" y="150.0" w="65.0" h="15.0" default_text="Offset Value:" icon_path=""/>
|
||||
<Default_Sensor_Offset_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="142.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Show_Temperature_Units type="javax.baja.ui.BLabel" x="10.0" y="166.0" w="90.0" h="15.0" default_text="Show Temperature" icon_path=""/>
|
||||
<Show_Temperature_Units1 type="javax.baja.ui.BLabel" x="10.0" y="176.0" w="40.0" h="15.0" default_text="units as:" icon_path=""/>
|
||||
<Show_Temperature_Units_DrpDown type="javax.baja.ui.BListDropDown" x="110.0" y="166.0" w="100.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Default_Value_Dynamic type="javax.baja.ui.BLabel" x="6.0" y="97.0" w="72.0" h="15.0" default_text="Default Value:" icon_path=""/>
|
||||
<Default_Value_Txt_Dynamic type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="100.0" y="17.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Increment_Decrement_Dynamic type="javax.baja.ui.BLabel" x="10.0" y="97.0" w="72.0" h="15.0" default_text="Increment/Decrement:" icon_path=""/>
|
||||
<Increment_Decrement_DrpDown_Dynamic type="javax.baja.ui.BListDropDown" x="85.0" y="68.0" w="100.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Number_Of_Decimals_Dynamic type="javax.baja.ui.BLabel" x="6.0" y="97.0" w="72.0" h="15.0" default_text="Number Of Decimals" icon_path=""/>
|
||||
<Number_Of_Decimals_DrpDown_Dynamic type="javax.baja.ui.BListDropDown" x="85.0" y="68.0" w="100.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
|
||||
<!-- Param Enumeration widget added -->
|
||||
|
||||
<Param_Enumerator_Cbx type="javax.baja.ui.BCheckBox" x="10.0" y="90.0" w="100.0" h="15.0" default_text="Enumerated" icon_path=""/>
|
||||
<Param_Enumerator_TextFld type="javax.baja.ui.pane.BTextEditorPane" w="280.0" h="70.0" x="10.0" y="140.0" default_text="" icon_path=""/>
|
||||
<Param_Enumerator_EnumRange_Button type="javax.baja.ui.BButton" x="140.0" y="185.0" w="120.0" h="25.0" default_text="Define Enum Range" icon_path=""/>
|
||||
|
||||
<Param_Enumerator_Cbx_1 type="javax.baja.ui.BCheckBox" x="10.0" y="90.0" w="100.0" h="15.0" default_text="Enumerated" icon_path=""/>
|
||||
<Param_Enumerator_TextFld_1 type="javax.baja.ui.pane.BTextEditorPane" w="280.0" h="70.0" x="10.0" y="250.0" default_text="" icon_path=""/>
|
||||
<Param_Enumerator_EnumRange_Button_1 type="javax.baja.ui.BButton" x="140.0" y="290.0" w="120.0" h="25.0" default_text="Define Enum Range" icon_path=""/>
|
||||
|
||||
<Param_Enumerator_Cbx_2 type="javax.baja.ui.BCheckBox" x="10.0" y="90.0" w="100.0" h="15.0" default_text="Enumerated" icon_path=""/>
|
||||
<Param_Enumerator_TextFld_2 type="javax.baja.ui.pane.BTextEditorPane" w="280.0" h="70.0" x="10.0" y="225.0" default_text="" icon_path=""/>
|
||||
<Param_Enumerator_EnumRange_Button_2 type="javax.baja.ui.BButton" x="140.0" y="265.0" w="120.0" h="25.0" default_text="Define Enum Range" icon_path=""/>
|
||||
|
||||
|
||||
|
||||
<Low_Limit type="javax.baja.ui.BLabel" x="10.0" y="170.0" w="48.0" h="15.0" default_text="Low Limit:" icon_path=""/>
|
||||
<Low_Limit_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="170.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Low_Limit_Browse_Btn type="javax.baja.ui.BButton" x="210.0" y="170.0" w="65.0" h="20.0" default_text="Browse" icon_path=""/>
|
||||
|
||||
|
||||
<High_Limit type="javax.baja.ui.BLabel" x="10.0" y="195.0" w="50.0" h="15.0" default_text="High Limit:" icon_path=""/>
|
||||
<High_Limit_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="110.0" y="195.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<High_Limit_Browse_Btn type="javax.baja.ui.BButton" x="210.0" y="195.0" w="65.0" h="20.0" default_text="Browse" icon_path=""/>
|
||||
|
||||
|
||||
<Allow_Null_Value_Chk_Dynamic type="javax.baja.ui.BCheckBox" x="400.0" y="63.0" w="100.0" h="15.0" default_text="Allow null value" icon_path=""/>
|
||||
<Increment_Decrement_1 type="javax.baja.ui.BLabel" x="6.0" y="97.0" w="72.0" h="15.0" default_text="Increment/Decrement:" icon_path=""/>
|
||||
<Increment_Decrement_DrpDown_1 type="javax.baja.ui.BListDropDown" x="85.0" y="68.0" w="75.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Number_Of_Decimals_1 type="javax.baja.ui.BLabel" x="10.0" y="97.0" w="72.0" h="15.0" default_text="Number Of Decimals" icon_path=""/>
|
||||
<Number_Of_Decimals_DrpDown_1 type="javax.baja.ui.BListDropDown" x="85.0" y="68.0" w="100.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Low_Limit_Dynamic type="javax.baja.ui.BLabel" x="10.0" y="97.0" w="48.0" h="15.0" default_text="Low Limit:" icon_path=""/>
|
||||
<Low_Limit_Txt_1_Dynamic type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="90.0" y="17.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<High_Limit_1_Dynamic type="javax.baja.ui.BLabel" x="10.0" y="97.0" w="50.0" h="15.0" default_text="High Limit:" icon_path=""/>
|
||||
<High_Limit_Txt_1_Dynamic type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="90.0" y="17.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Allow_Null_Value_Chk_1 type="javax.baja.ui.BCheckBox" x="200.0" y="20.0" w="100.0" h="15.0" default_text="Allow null value" icon_path=""/>
|
||||
<Automatically_Bind_TO_Contl type="javax.baja.ui.BCheckBox" x="200.0" y="20.0" w="100.0" h="15.0" default_text="Set as Default" icon_path=""/>
|
||||
<Time_Component type="javax.baja.ui.BLabel" x="10.0" y="98.0" w="85.0" h="15.0" default_text="Time Component:" icon_path=""/>
|
||||
<Automatically_Bind_TO_Contl_Dynamic type="javax.baja.ui.BCheckBox" x="10.0" y="125.0" w="140.0" h="15.0" default_text="Automatically bind to" icon_path=""/>
|
||||
<Automatically_Bind_TO_Contl1 type="javax.baja.ui.BLabel" x="27.0" y="135.0" w="100.0" h="15.0" default_text="controller (Internal)" icon_path=""/>
|
||||
<Select_Sensor type="javax.baja.ui.BLabel" x="10.0" y="95.0" w="70.0" h="15.0" default_text="Select sensor:" icon_path=""/>
|
||||
<Select_Sensor_DrpDown type="javax.baja.ui.BListDropDown" x="110.0" y="95.0" w="150.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Number_Of_Decimals_Sensor type="javax.baja.ui.BLabel" x="10.0" y="250.0" w="55.0" h="15.0" default_text="Number Of " icon_path=""/>
|
||||
<Number_Of_Decimals_Txt1_Sensor type="javax.baja.ui.BLabel" x="10.0" y="260.0" w="45.0" h="15.0" default_text="Decimals:" icon_path=""/>
|
||||
<Number_Of_Decimals_DrpDown_Sensor type="javax.baja.ui.BListDropDown" x="110.0" y="250.0" w="40.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
<Parameter_Display_Seg_Label type="javax.baja.ui.BLabel" x="277.0" y="95.0" w="210.0" h="15.0" default_text="Click Boxes to Select Labels to Show" icon_path=""/>
|
||||
<Parameter_Display_Seg type="javax.baja.ui.pane.BBorderPane" x="277.0" y="108.0" w="268.0" h="175.0" default_text="" icon_path=""/>
|
||||
<Time_Component_DrpDown type="javax.baja.ui.BListDropDown" x="110.0" y="93.0" w="160.0" h="25.0" default_text="Heat_Drop_Down" icon_path=""/>
|
||||
</Parameter_Details>
|
||||
<Category_Scr_Display_Seg type="javax.baja.ui.pane.BBorderPane" x="100.0" y="300.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
</Categories_Parameter_pane>
|
||||
<Home_Screen_Options type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BHomeScreenPane" x="0.0" y="0.0" w="100.0" h="30.0" default_text="Home Screen Options" icon_path="">
|
||||
<Home_Screen_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="150.0" h="15.0" default_text="Home Screen Options" icon_path=""/>
|
||||
<Home_Screen_topLine type="javax.baja.ui.BLabel" x="0.0" y="17.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Home_Screen_Label_2 type="javax.baja.ui.BLabel" x="0.0" y="20.0" w="320.0" h="15.0" default_text="Home Screen Options Available for Selection from the Wall Module" icon_path=""/>
|
||||
<Home_Screen_List type="javax.baja.ui.list.BList" x="0.0" y="40.0" w="263.0" h="110.0" default_text="Home Screen List" icon_path=""/>
|
||||
<HM_Scr_Set_As_Default_Btn type="javax.baja.ui.BButton" x="0.0" y="155.0" w="90.0" h="25.0" default_text="Set as Default" icon_path=""/>
|
||||
<HM_Scr_Add_Btn type="javax.baja.ui.BButton" x="95.0" y="155.0" w="50.0" h="25.0" default_text="Add" icon_path=""/>
|
||||
<HM_Scr_Edit_Btn type="javax.baja.ui.BButton" x="152.0" y="155.0" w="50.0" h="25.0" default_text="Edit" icon_path=""/>
|
||||
<HM_Scr_Remove_Btn type="javax.baja.ui.BButton" x="210.0" y="155.0" w="55.0" h="25.0" default_text="Remove" icon_path=""/>
|
||||
<HM_Scr_Up_Btn type="javax.baja.ui.BButton" x="275.0" y="64.0" w="30.0" h="20.0" default_text="" icon_path=""/>
|
||||
<HM_Scr_Down_Btn type="javax.baja.ui.BButton" x="275.0" y="90.0" w="30.0" h="20.0" default_text="" icon_path=""/>
|
||||
<HM_Up_Down_label type="javax.baja.ui.BLabel" x="320.0" y="45.0" w="150.0" h="100.0" default_text="" icon_path=""/>
|
||||
<New_Home_Details type="javax.baja.ui.pane.BBorderPane" x="0.0" y="190.0" w="565.0" h="310.0" default_text="New Home Details" icon_path="">
|
||||
<HM_Scrn_Option_Name type="javax.baja.ui.BLabel" x="10.0" y="17.0" w="65.0" h="15.0" default_text="Option Name:" icon_path=""/>
|
||||
<Home_Scrn_Description type="javax.baja.ui.BLabel" x="10.0" y="48.0" w="57.0" h="15.0" default_text="Description:" icon_path=""/>
|
||||
<HM_Scrn_Option_Details type="javax.baja.ui.BLabel" x="10.0" y="75.0" w="62.0" h="15.0" default_text="Option Type:" icon_path=""/>
|
||||
<HM_Scrn_Option_Name_Txt type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="100.0" y="17.0" w="100.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<HM_Scrn_Description_Txt type="javax.baja.ui.BTextField" x="100.0" y="48.0" w="250.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<HM_Multiple_Parameter_Rdo type="javax.baja.ui.BRadioButton" x="100.0" y="75.0" w="300.0" h="15.0" default_text="Multiple Parameter (Up to Three Values with Fixed Labels)" icon_path=""/>
|
||||
<HM_Single_Parameter_Rdo type="javax.baja.ui.BRadioButton" x="100.0" y="95.0" w="330.0" h="15.0" default_text="Single Parameter (One Value with Custom Eight Character Label)" icon_path=""/>
|
||||
<HM_Set_as_Default_Chk type="javax.baja.ui.BCheckBox" x="220.0" y="17.0" w="100.0" h="15.0" default_text="Set as Default" icon_path=""/>
|
||||
<HM_Scrn_Note1 type="javax.baja.ui.BLabel" x="10.0" y="180.0" w="154.0" h="15.0" default_text="Note: Select the parameter you" icon_path=""/>
|
||||
<HM_Scrn_Note2 type="javax.baja.ui.BLabel" x="10.0" y="190.0" w="165.0" h="15.0" default_text="want to show from the drop down " icon_path=""/>
|
||||
<HM_Scrn_Note3 type="javax.baja.ui.BLabel" x="10.0" y="200.0" w="20.0" h="15.0" default_text="lists" icon_path=""/>
|
||||
<HM_Scrn_Save_Btn type="javax.baja.ui.BButton" x="5.0" y="285.0" w="50.0" h="20.0" default_text="Save" icon_path=""/>
|
||||
<HM_Scrn_Cancel_Btn type="javax.baja.ui.BButton" x="60.0" y="285.0" w="50.0" h="20.0" default_text="Cancel" icon_path=""/>
|
||||
<HM_Segment_Pane_Label type="javax.baja.ui.BLabel" x="292.0" y="107.0" w="210.0" h="15.0" default_text="Click Boxes to Select Labels to Show" icon_path=""/>
|
||||
<HM_Segment_Pane type="javax.baja.ui.pane.BBorderPane" x="292.0" y="122.0" w="268.0" h="175.0" default_text="" icon_path=""/>
|
||||
</New_Home_Details>
|
||||
<HM_Preview_Line type="javax.baja.ui.BLabel" x="0.0" y="275.0" w="570.0" h="1.0" default_text="" icon_path=""/>
|
||||
<HM_Preview_Label type="javax.baja.ui.BLabel" x="2.0" y="280.0" w="500.0" h="20.0" default_text="Home Screen Option Preview" icon_path=""/>
|
||||
<HM_Preview_Segments_Pane type="javax.baja.ui.pane.BBorderPane" x="100.0" y="300.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
|
||||
</Home_Screen_Options>
|
||||
<Occupancy_and_Override type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BOccAndOverrideScreenPane" x="0.0" y="0.0" w="100.0" h="600.0" default_text="Occupancy and Override" icon_path="">
|
||||
<Occupancy_and_Override_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="180.0" h="15.0" default_text="Occupancy and Override" icon_path=""/>
|
||||
<Occupancy_and_Override_topLine type="javax.baja.ui.BLabel" x="0.0" y="20.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Hide_Advanced_Settings_For_Occ type="javax.baja.ui.BButton" x="5.0" y="27.0" w="180.0" h="20.0" default_text="Hide Advanced Settings" icon_path=""/>
|
||||
<Enable_Occupancy_Override type="javax.baja.ui.pane.BBorderPane" x="0.0" y="52.0" w="370.0" h="125.0" default_text=" " icon_path="">
|
||||
<Select_the_valid_State_Override type="javax.baja.ui.BLabel" x="10.0" y="15.0" w="252.0" h="20.0" default_text="Select the Valid States That You Can Override To:" icon_path=""/>
|
||||
<Occupied_Chk type="javax.baja.ui.BCheckBox" x="15.0" y="35.0" w="70.0" h="20.0" default_text="Occupied" icon_path=""/>
|
||||
<lbl_occupied_setting_status type="javax.baja.ui.BLabel" x="80.0" y="35.0" w="200.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Btn_Occupied_Settings type="javax.baja.ui.BButton" x="290.0" y="35.0" w="70.0" h="20.0" default_text="Settings...." icon_path=""/>
|
||||
<Un_Occupied_Chk type="javax.baja.ui.BCheckBox" x="15.0" y="62.0" w="80.0" h="20.0" default_text="Unoccupied" icon_path=""/>
|
||||
<lbl_unoccupied_setting_status type="javax.baja.ui.BLabel" x="90.0" y="62.0" w="200.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Btn_UnOccupied_Settings type="javax.baja.ui.BButton" x="290.0" y="62.0" w="70.0" h="20.0" default_text="Settings...." icon_path=""/>
|
||||
<StandBy_Chk type="javax.baja.ui.BCheckBox" x="15.0" y="89.0" w="65.0" h="20.0" default_text="Standby" icon_path=""/>
|
||||
<lbl_standby_setting_status type="javax.baja.ui.BLabel" x="75.0" y="89.0" w="200.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Btn_StandBy_Settings type="javax.baja.ui.BButton" x="290.0" y="89.0" w="70.0" h="20.0" default_text="Settings...." icon_path=""/>
|
||||
</Enable_Occupancy_Override>
|
||||
<Enable_Occupied_Chk type="javax.baja.ui.BCheckBox" x="5.0" y="49.0" w="160.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Occupancy_Status_Display_Options type="javax.baja.ui.pane.BBorderPane" x="0.0" y="181.0" w="370.0" h="85.0" default_text="Occupancy Status Display Options" icon_path="">
|
||||
<Rdo_Show_Effective_Occupancy_Status type="javax.baja.ui.BRadioButton" x="15.0" y="15.0" w="200.0" h="20.0" default_text="Show Effective Occupancy Status" icon_path=""/>
|
||||
<Rdo_Show_Occupancy_Override_Status type="javax.baja.ui.BRadioButton" x="15.0" y="35.0" w="200.0" h="20.0" default_text="Show Occupancy Override Status" icon_path=""/>
|
||||
<Rdo_Do_Not_Show_Occupancy_or_Override_Status type="javax.baja.ui.BRadioButton" x="15.0" y="55.0" w="240.0" h="20.0" default_text="Do Not Show Occupancy or Override Status" icon_path=""/>
|
||||
</Occupancy_Status_Display_Options>
|
||||
<Occupancy_Values type="javax.baja.ui.pane.BBorderPane" x="385.0" y="52.0" w="160.0" h="137.0" default_text="Occupancy Values" icon_path="">
|
||||
<lblOccupied type="javax.baja.ui.BLabel" x="2.0" y="15.0" w="66.0" h="20.0" default_text="Occupied:" icon_path=""/>
|
||||
<lblUnoccupied type="javax.baja.ui.BLabel" x="2.0" y="38.0" w="78.0" h="20.0" default_text="Unoccupied:" icon_path=""/>
|
||||
<lblBypass type="javax.baja.ui.BLabel" x="2.0" y="61.0" w="57.0" h="20.0" default_text="Bypass:" icon_path=""/>
|
||||
<lblStandby type="javax.baja.ui.BLabel" x="2.0" y="84.0" w="64.0" h="20.0" default_text="Standby:" icon_path=""/>
|
||||
<lblNull type="javax.baja.ui.BLabel" x="2.0" y="107.0" w="42.0" h="20.0" default_text="Null:" icon_path=""/>
|
||||
<Occupied_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="15.0" w="40.0" h="24.0" default_text="txt" icon_path=""/>
|
||||
<Unoccupied_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="38.0" w="40.0" h="25.0" default_text="Default Text" icon_path=""/>
|
||||
<Bypass_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="61.0" w="40.0" h="25.0" default_text="Default Text" icon_path=""/>
|
||||
<Standby_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="84.0" w="40.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Null_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="107.0" w="40.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
</Occupancy_Values>
|
||||
<lblOcc_PreviewLine type="javax.baja.ui.BLabel" x="0.0" y="275.0" w="570.0" h="1.0" default_text="Occupancy and Override Preview:" icon_path=""/>
|
||||
<lblOccOverridePreview type="javax.baja.ui.BLabel" x="2.0" y="280.0" w="170.0" h="20.0" default_text="Occupancy and Override Preview:" icon_path=""/>
|
||||
<Occ_display_segments type="javax.baja.ui.pane.BBorderPane" x="100.0" y="300.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
</Occupancy_and_Override>
|
||||
<Fan_Command type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BFanCommandScreenPane" x="0.0" y="0.0" w="100.0" h="600.0" default_text="Fan Command" icon_path="">
|
||||
<Fan_Command_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="120.0" h="12.0" default_text="Fan Command" icon_path=""/>
|
||||
<Hide_Advanced_Settings_For_Fan type="javax.baja.ui.BButton" x="5.0" y="28.0" w="180.0" h="20.0" default_text="Hide Advanced Settings" icon_path=""/>
|
||||
<!--<enable_fan_command_chkbox type="javax.baja.ui.BCheckBox" x="5.0" y="70.0" w="100.0" h="30.0" default_text="" icon_path=""/>-->
|
||||
<enable_fan_command type="javax.baja.ui.pane.BBorderPane" x="0.0" y="60.0" w="298.0" h="185.0" default_text=" " icon_path="">
|
||||
<Network_Setpoint_Cbx type="javax.baja.ui.BCheckBox" x="20.0" y="25.0" w="135.0" h="15.0" default_text="Set as Network Setpoint" icon_path=""/>
|
||||
<Select_the_valid_fan_type type="javax.baja.ui.BLabel" x="20.0" y="45.0" w="135.0" h="15.0" default_text="Select the Valid Fan States:" icon_path=""/>
|
||||
<Fan_State_1 type="javax.baja.ui.BRadioButton" x="15.0" y="65.0" w="120.0" h="15.0" default_text="2 State (Auto / On)" icon_path=""/>
|
||||
<Fan_State_2 type="javax.baja.ui.BRadioButton" x="15.0" y="90.0" w="150.0" h="15.0" default_text="3 State (Auto / On / Off)" icon_path=""/>
|
||||
<Fan_State_3 type="javax.baja.ui.BRadioButton" x="15.0" y="115.0" w="220.0" h="15.0" default_text="5 State (Auto / Off / Low / Medium / High)" icon_path=""/>
|
||||
<Default_Fan_State type="javax.baja.ui.BLabel" x="20.0" y="140.0" w="90.0" h="25.0" default_text="Default Fan State:" icon_path=""/>
|
||||
<Fan_On_Drop_Down type="javax.baja.ui.BListDropDown" x="120.0" y="140.0" w="120.0" h="25.0" default_text="On" icon_path=""/>
|
||||
</enable_fan_command>
|
||||
<enable_fan_command_chk type="javax.baja.ui.BCheckBox" x="5.0" y="57.0" w="130.0" h="20.0" default_text="" icon_path=""/>
|
||||
<Fan_Status_Values type="javax.baja.ui.pane.BBorderPane" x="310.0" y="60.0" w="180.0" h="185.0" default_text="Fan Status Values" icon_path="">
|
||||
<Fan_Off type="javax.baja.ui.BLabel" x="0.0" y="20.0" w="53.0" h="20.0" default_text="Off:" icon_path=""/>
|
||||
<Fan_On type="javax.baja.ui.BLabel" x="0.0" y="43.0" w="54.0" h="20.0" default_text="On:" icon_path=""/>
|
||||
<Fan_Auto type="javax.baja.ui.BLabel" x="0.0" y="66.0" w="64.0" h="20.0" default_text="Auto:" icon_path=""/>
|
||||
<Fan_Low type="javax.baja.ui.BLabel" x="0.0" y="89.0" w="62.0" h="20.0" default_text="Low:" icon_path=""/>
|
||||
<Fan_Medium type="javax.baja.ui.BLabel" x="0.0" y="112.0" w="77.0" h="20.0" default_text="Medium:" icon_path=""/>
|
||||
<Fan_High type="javax.baja.ui.BLabel" x="0.0" y="135.0" w="61.0" h="20.0" default_text="High:" icon_path=""/>
|
||||
<Fan_Off_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="20.0" w="40.0" h="30.0" default_text="txt" icon_path=""/>
|
||||
<Fan_On_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="43.0" w="40.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Fan_Auto_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="66.0" w="40.0" h="35.0" default_text="Default Text" icon_path=""/>
|
||||
<Fan_Low_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="89.0" w="40.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Fan_Medium_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="112.0" w="40.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Fan_High_Txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="80.0" y="135.0" w="40.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
</Fan_Status_Values>
|
||||
<BLine_For_Fan type="javax.baja.ui.shape.BLine" x="0.0" y="9.0" w="570.0" h="30.0" default_text="" icon_path=""/>
|
||||
<Fan_Line2 type="javax.baja.ui.BLabel" x="0.0" y="275.0" w="570.0" h="1.0" default_text="" icon_path=""/>
|
||||
<Fan_Preview_Label type="javax.baja.ui.BLabel" x="3.0" y="280.0" w="80.0" h="10.0" default_text="Fan Preview:" icon_path=""/>
|
||||
<FanDisplaySegments type="javax.baja.ui.pane.BBorderPane" x="100.0" y="300.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
</Fan_Command>
|
||||
<System_Status_and_Cmd type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BSysStatusAndCommandScreenPane" x="0.0" y="0.0" w="100.0" h="600.0" default_text="sys_status_and_cmd" icon_path="">
|
||||
<sys_status_and_command type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="210.0" h="14.0" default_text="System Status and Command" icon_path=""/>
|
||||
<Hide_Advanced_Settings type="javax.baja.ui.BButton" x="5.0" y="25.0" w="180.0" h="20.0" default_text="Hide Advanced Settings" icon_path=""/>
|
||||
<Show_System_Status type="javax.baja.ui.BCheckBox" x="5.0" y="52.0" w="200.0" h="25.0" default_text="Show System Status" icon_path=""/>
|
||||
<!--<enable_system_command_chkbox type="javax.baja.ui.BCheckBox" x="5.0" y="90.0" w="100.0" h="30.0" default_text="" icon_path=""/>-->
|
||||
<enable_system_command type="javax.baja.ui.pane.BBorderPane" x="0.0" y="77.0" w="300.0" h="200.0" default_text=" " icon_path="">
|
||||
<Sys_Network_Setpoint_Cbx type="javax.baja.ui.BCheckBox" x="10.0" y="15.0" w="135.0" h="15.0" default_text="Set as Network Setpoint" icon_path=""/>
|
||||
<Select_the_valid_system_commands type="javax.baja.ui.BLabel" x="10.0" y="35.0" w="190.0" h="20.0" default_text="Select the Valid System Commands" icon_path=""/>
|
||||
<Sys_Cmd_1 type="javax.baja.ui.BRadioButton" x="15.0" y="55.0" w="300.0" h="20.0" default_text="Off / Heat (Heat Only)" icon_path=""/>
|
||||
<Sys_Cmd_2 type="javax.baja.ui.BRadioButton" x="15.0" y="75.0" w="300.0" h="20.0" default_text="Off / Cool (Cool Only)" icon_path=""/>
|
||||
<Sys_Cmd_3 type="javax.baja.ui.BRadioButton" x="15.0" y="95.0" w="300.0" h="20.0" default_text="Off / Heat / Cool (No Auto Changeover)" icon_path=""/>
|
||||
<Sys_Cmd_4 type="javax.baja.ui.BRadioButton" x="15.0" y="115.0" w="300.0" h="20.0" default_text="Off / Auto / Heat / Cool (Auto Changeover)" icon_path=""/>
|
||||
<Sys_Cmd_5 type="javax.baja.ui.BRadioButton" x="15.0" y="135.0" w="300.0" h="20.0" default_text="Off / Auto / Heat / Cool / Emergency Heat (Heat Pump)" icon_path=""/>
|
||||
<Default_System_Command type="javax.baja.ui.BLabel" x="0.0" y="155.0" w="180.0" h="25.0" default_text="Default System Command:" icon_path=""/>
|
||||
<System_Drop_Down type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="160.0" y="155.0" w="100.0" h="25.0" default_text="Heat" icon_path=""/>
|
||||
</enable_system_command>
|
||||
<enable_system_command_chk type="javax.baja.ui.BCheckBox" x="5.0" y="74.0" w="150.0" h="20.0" default_text="" icon_path=""/>
|
||||
<System_Status_Values type="javax.baja.ui.pane.BBorderPane" x="330.0" y="19.0" w="185.0" h="114.0" default_text="System Status Values" icon_path="">
|
||||
<Off1 type="javax.baja.ui.BLabel" x="5.0" y="20.0" w="25.0" h="20.0" default_text="Off:" icon_path=""/>
|
||||
<Heat1 type="javax.baja.ui.BLabel" x="5.0" y="43.0" w="30.0" h="20.0" default_text="Heat:" icon_path=""/>
|
||||
<Cool1 type="javax.baja.ui.BLabel" x="5.0" y="66.0" w="30.0" h="20.0" default_text="Cool:" icon_path=""/>
|
||||
<Reheat1 type="javax.baja.ui.BLabel" x="5.0" y="89.0" w="45.0" h="20.0" default_text="Reheat:" icon_path=""/>
|
||||
<off1_txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="20.0" w="45.0" h="20.0" default_text="txt" icon_path=""/>
|
||||
<heat1_text type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="43.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<cool1_text type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="66.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<reheat1_txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="89.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
</System_Status_Values>
|
||||
<System_Command_Values type="javax.baja.ui.pane.BBorderPane" x="330.0" y="137.0" w="185.0" h="138.0" default_text="System Command Values" icon_path="">
|
||||
<OffCmd type="javax.baja.ui.BLabel" x="5.0" y="20.0" w="25.0" h="20.0" default_text="Off:" icon_path=""/>
|
||||
<AutoCmd type="javax.baja.ui.BLabel" x="5.0" y="43.0" w="30.0" h="20.0" default_text="Auto:" icon_path=""/>
|
||||
<HeatCmd type="javax.baja.ui.BLabel" x="5.0" y="66.0" w="30.0" h="20.0" default_text="Heat:" icon_path=""/>
|
||||
<CoolCmd type="javax.baja.ui.BLabel" x="5.0" y="89.0" w="30.0" h="20.0" default_text="Cool:" icon_path=""/>
|
||||
<EmergencyCmd type="javax.baja.ui.BLabel" x="5.0" y="112.0" w="90.0" h="20.0" default_text="Emergency Heat:" icon_path=""/>
|
||||
<OffCmd_txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="20.0" w="45.0" h="20.0" default_text="txt" icon_path=""/>
|
||||
<AutoCmd_text type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="43.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<HeatCmd_text type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="66.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<CoolCmd_txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="89.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
<EmergencyCmd_txt type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="100.0" y="112.0" w="45.0" h="20.0" default_text="Default Text" icon_path=""/>
|
||||
</System_Command_Values>
|
||||
<bLine_status type="javax.baja.ui.shape.BLine" x="0.0" y="9.0" w="570.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<bLine_status2 type="javax.baja.ui.BLabel" x="0.0" y="280.0" w="570.0" h="1.0" default_text="" icon_path=""/>
|
||||
<Sys_Preview_Label type="javax.baja.ui.BLabel" x="5.0" y="284.0" w="185.0" h="15.0" default_text="System Status and Command Preview:" icon_path=""/>
|
||||
<SystemDisplaySegments type="javax.baja.ui.pane.BBorderPane" x="100.0" y="300.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
</System_Status_and_Cmd>
|
||||
<!-- BeginGearsBlock XML SupportForScheduling -->
|
||||
<Schedule_pane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BScheduleScreenPane" x="0" y="0" w="600.0" h="600.0" default_text="Schedule/Time" icon_path="">
|
||||
<Schedule_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="150.0" h="30.0" default_text="Schedule/Time" icon_path=""/>
|
||||
<Schedule_topLine type="javax.baja.ui.BLabel" x="0.0" y="25.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Schedule_Q2_View_Modify_Label type="javax.baja.ui.BLabel" x="0.0" y="37.0" w="248.0" h="30.0" default_text="Do you want Zio to view/modify the controller time?" icon_path=""/>
|
||||
<Cntrl_Time_View_Modify_RadioBtn_Yes type="javax.baja.ui.BRadioButton" x="10.0" y="57.0" w="50.0" h="30.0" default_text="Schd_Yes" icon_path=""/>
|
||||
<Cntrl_Time_View_Modify_RadioBtn_No type="javax.baja.ui.BRadioButton" x="50.0" y="57.0" w="50.0" h="30.0" default_text="Schd_No" icon_path=""/>
|
||||
<Enable_Time_command type="javax.baja.ui.pane.BBorderPane" x="0.0" y="85.0" w="285.0" h="120.0" default_text="" icon_path="">
|
||||
<Time_Q1_Tenant_View_Label type="javax.baja.ui.BLabel" x="0.0" y="10.0" w="285.0" h="30.0" default_text="Do you want the Tenant to be able to view controller time?" icon_path=""/>
|
||||
<Time_Tenant_View_RadioBtn_Yes type="javax.baja.ui.BRadioButton" x="10.0" y="30.0" w="50.0" h="30.0" default_text="Schd_Yes" icon_path=""/>
|
||||
<Time_Tenant_View_RadioBtn_No type="javax.baja.ui.BRadioButton" x="50.0" y="30.0" w="50.0" h="30.0" default_text="Schd_No" icon_path=""/>
|
||||
<Time_Q2_Tenant_Edit_Label type="javax.baja.ui.BLabel" x="0.0" y="70.0" w="285.0" h="30.0" default_text="Do you want the Tenant to be able to edit controller time?" icon_path=""/>
|
||||
<Time_Tenant_Edit_RadioBtn_Yes type="javax.baja.ui.BRadioButton" x="10.0" y="90.0" w="50.0" h="30.0" default_text="Schd_Yes" icon_path=""/>
|
||||
<Time_Tenant_Edit_RadioBtn_No type="javax.baja.ui.BRadioButton" x="50.0" y="90.0" w="50.0" h="30.0" default_text="Schd_No" icon_path=""/>
|
||||
</Enable_Time_command>
|
||||
<Schedule_Q1_Change_Sch_Label type="javax.baja.ui.BLabel" x="0.0" y="210.0" w="245.0" h="30.0" default_text="Do you want to change the schedule from the Zio?" icon_path=""/>
|
||||
<Change_Sch_RadioBtn_Yes type="javax.baja.ui.BRadioButton" x="10.0" y="230.0" w="50.0" h="30.0" default_text="Schd_Yes" icon_path=""/>
|
||||
<Change_Sch_RadioBtn_No type="javax.baja.ui.BRadioButton" x="50.0" y="230.0" w="50.0" h="30.0" default_text="Schd_No" icon_path=""/>
|
||||
<Enable_schedule_command type="javax.baja.ui.pane.BBorderPane" x="0.0" y="250.0" w="350.0" h="300.0" default_text=" " icon_path="">
|
||||
<Schedule_Q3_Tenant_View_Label type="javax.baja.ui.BLabel" x="0.0" y="10.0" w="280.0" h="30.0" default_text="Do you want the Tenant to be able to view the schedule?" icon_path=""/>
|
||||
<Tenant_View_RadioBtn_Yes type="javax.baja.ui.BRadioButton" x="10.0" y="30.0" w="50.0" h="30.0" default_text="Schd_Yes" icon_path=""/>
|
||||
<Tenant_View_RadioBtn_No type="javax.baja.ui.BRadioButton" x="50.0" y="30.0" w="50.0" h="30.0" default_text="Schd_No" icon_path=""/>
|
||||
<Schedule_Q4_Tenant_Edit_Label type="javax.baja.ui.BLabel" x="0.0" y="70.0" w="280.0" h="30.0" default_text="Do you want the Tenant to be able to edit the schedule?" icon_path=""/>
|
||||
<Tenant_Edit_RadioBtn_Yes type="javax.baja.ui.BRadioButton" x="10.0" y="90.0" w="50.0" h="30.0" default_text="Schd_Yes" icon_path=""/>
|
||||
<Tenant_Edit_RadioBtn_No type="javax.baja.ui.BRadioButton" x="50.0" y="90.0" w="50.0" h="30.0" default_text="Schd_No" icon_path=""/>
|
||||
<Schedule_Q5_Display_Schedule_Label type="javax.baja.ui.BLabel" x="0.0" y="120.0" w="220.0" h="30.0" default_text="Do you want Zio to display the schedule as?" icon_path=""/>
|
||||
<Display_Schedule_RadioBtn_EightDay type="javax.baja.ui.BRadioButton" x="10.0" y="140.0" w="300.0" h="30.0" default_text="8 day schedule (Mon, Tue, Wed, Thu, Fri, Sat, Sun, Hol)" icon_path=""/>
|
||||
<Display_Schedule_RadioBtn_SevenDay type="javax.baja.ui.BRadioButton" x="10.0" y="160.0" w="280.0" h="30.0" default_text="7 day schedule (Mon, Tue, Wed, Thu, Fri, Sat, Sun)" icon_path=""/>
|
||||
<Display_Schedule_RadioBtn_FiveTwoOne type="javax.baja.ui.BRadioButton" x="10.0" y="180.0" w="250.0" h="30.0" default_text="5-2-1 day schedule (Mon-Fri, Sat-Sun, Hol)" icon_path=""/>
|
||||
<Display_Schedule_RadioBtn_FiveTwo type="javax.baja.ui.BRadioButton" x="10.0" y="200.0" w="200.0" h="30.0" default_text="5-2 day schedule (Mon-Fri, Sat-Sun)" icon_path=""/>
|
||||
</Enable_schedule_command>
|
||||
<Schedule_Info_Message type="javax.baja.ui.BLabel" x="0.0" y="475.0" w="400.0" h="30.0" default_text="" icon_path=""/>
|
||||
<Schedule_Tooltip_Message type="javax.baja.ui.BLabel" x="0.0" y="505.0" w="400.0" h="30.0" default_text="" icon_path=""/>
|
||||
</Schedule_pane>
|
||||
<!-- EndGearsBlock XML SupportForScheduling -->
|
||||
<Password_pane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BPasswordScreenPane" x="0.0" y="0.0" w="600.0" h="600.0" default_text="Password" icon_path="">
|
||||
<Password_Protection_Label type="javax.baja.ui.BLabel" x="0.0" y="0.0" w="150.0" h="30.0" default_text="Password Protection" icon_path=""/>
|
||||
<Password_Protection_topLine type="javax.baja.ui.BLabel" x="0.0" y="25.0" w="570.0" h="2.0" default_text="" icon_path=""/>
|
||||
<Password_Chkbx_Enable type="javax.baja.ui.BCheckBox" x="20.0" y="80.0" w="150.0" h="30.0" default_text="Enable Password Protection" icon_path=""/>
|
||||
<Password_Label type="javax.baja.ui.BLabel" x="20.0" y="110.0" w="80.0" h="30.0" default_text="Password Label:" icon_path=""/>
|
||||
<Password_Max_length type="javax.baja.ui.BLabel" x="18.0" y="130.0" w="100.0" h="30.0" default_text="(max 8 characters)" icon_path=""/>
|
||||
<Password_Label_TxtField type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="130.0" y="120.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Password_Text type="javax.baja.ui.BLabel" x="270.0" y="110.0" w="80.0" h="30.0" default_text="Password:" icon_path=""/>
|
||||
<Password_Text_Max_length type="javax.baja.ui.BLabel" x="268.0" y="130.0" w="100.0" h="30.0" default_text="(max 4 digits)" icon_path=""/>
|
||||
<Password_Text_TxtField type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BIntegerTextField" x="380.0" y="120.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
<Password_Info_Message type="javax.baja.ui.BLabel" x="0.0" y="250.0" w="400.0" h="30.0" default_text="" icon_path=""/>
|
||||
<Password_Line1 type="javax.baja.ui.BLabel" x="0.0" y="275.0" w="570.0" h="1.0" default_text="" icon_path=""/>
|
||||
<Password_Preview_Label type="javax.baja.ui.BLabel" x="5.0" y="280.0" w="185.0" h="15.0" default_text="Password Protection Preview:" icon_path=""/>
|
||||
<PasswordPreviewSegments type="javax.baja.ui.pane.BBorderPane" x="100.0" y="300.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
</Password_pane>
|
||||
<Preview_Pane type="com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.ui.BPreviewPane" x="0.0" y="0.0" w="100.0" h="600.0" default_text="Preview Pane" icon_path="">
|
||||
<Preview_border type="javax.baja.ui.pane.BBorderPane" x="0.0" y="0.0" w="600.0" h="430.0" default_text="" icon_path="">
|
||||
<Preview_label type="javax.baja.ui.BLabel" x="5.0" y="0.0" w="100.0" h="30.0" default_text="Preview" icon_path=""/>
|
||||
<preview_Line1 type="javax.baja.ui.BLabel" x="0.0" y="25.0" w="600.0" h="1.0" default_text="" icon_path=""/>
|
||||
<preview_Line2 type="javax.baja.ui.BLabel" x="0.0" y="65.0" w="600.0" h="1.0" default_text="" icon_path=""/>
|
||||
<SelectView type="javax.baja.ui.BLabel" x="65.0" y="37.0" w="55.0" h="15.0" default_text="SelectView:" icon_path=""/>
|
||||
<Tenant_View type="javax.baja.ui.BRadioButton" x="130.0" y="37.0" w="100.0" h="15.0" default_text="Tenant View" icon_path=""/>
|
||||
<contractor_view type="javax.baja.ui.BRadioButton" x="260.0" y="37.0" w="100.0" h="15.0" default_text="Contractor View"
|
||||
icon_path=""/>
|
||||
<display_segments type="javax.baja.ui.pane.BBorderPane" x="130.0" y="70.0" w="268.0" h="210.0" default_text="" icon_path=""/>
|
||||
<preview_error_label type="javax.baja.ui.BLabel" x="35.0" y="280.0" w="600.0" h="100.0" default_text="" icon_path=""/>
|
||||
<preview_err_details type="javax.baja.ui.BButton" x="268.0" y="345.0" w="60.0" h="25.0" default_text="Details" icon_path=""/>
|
||||
<preview_err_details_simulation type="javax.baja.ui.BButton" x="185.0" y="370.0" w="60.0" h="25.0" default_text="Details" icon_path=""/>
|
||||
<preview_close type="javax.baja.ui.BButton" x="255.0" y="370.0" w="60.0" h="25.0" default_text="Close" icon_path=""/>
|
||||
</Preview_border>
|
||||
</Preview_Pane>
|
||||
|
||||
<!--<wizard_pane icon_path="" default_text="WIZARD_VIEW" type="javax.baja.ui.BWidget" x="0" y="0" w="600" h="500">
|
||||
<bpane_simulationUI type="javax.baja.ui.pane.BBorderPane" x="197.0" y="234.0" w="268.0" h="174.0" default_text="" icon_path="">
|
||||
<lbl_system type="javax.baja.ui.BLabel" x="34.0" y="4.5" w="50.0" h="15.0" default_text="SYSTEM:" icon_path=""/>
|
||||
<lbl_off type="javax.baja.ui.BLabel" x="79.0" y="4.5" w="25.0" h="15.0" default_text="OFF" icon_path=""/>
|
||||
<lbl_auto type="javax.baja.ui.BLabel" x="103.0" y="4.5" w="29.0" h="15.0" default_text="AUTO" icon_path=""/>
|
||||
<lbl_cool type="javax.baja.ui.BLabel" x="133.0" y="4.5" w="29.0" h="15.0" default_text="COOL" icon_path=""/>
|
||||
<lbl_em type="javax.baja.ui.BLabel" x="161.0" y="4.5" w="23.0" h="15.0" default_text="EM." icon_path=""/>
|
||||
<lbl_heat type="javax.baja.ui.BLabel" x="181.0" y="4.5" w="28.0" h="15.0" default_text="HEAT" icon_path=""/>
|
||||
<itf_topLine type="javax.baja.ui.shape.BLine" x="20.0" y="15.0" w="100.0" h="5.0" default_text="top line" icon_path=""/>
|
||||
<lbl_left_room type="javax.baja.ui.BLabel" x="48.0" y="20.0" w="30.0" h="15.0" default_text="ROOM" icon_path=""/>
|
||||
<lbl_left_setpoint type="javax.baja.ui.BLabel" x="81.0" y="20.0" w="50.0" h="15.0" default_text="SETPOINT" icon_path=""/>
|
||||
<lbl_right_humidity type="javax.baja.ui.BLabel" x="140.0" y="20.0" w="50.0" h="15.0" default_text="HUMIDITY" icon_path=""/>
|
||||
<lbl_right_outside type="javax.baja.ui.BLabel" x="188.0" y="20.0" w="50.0" h="15.0" default_text="OUTSIDE" icon_path=""/>
|
||||
<lbl_hum_percent type="javax.baja.ui.BLabel" x="202.0" y="40.0" w="10.0" h="15.0" default_text="%" icon_path=""/>
|
||||
<lbl_override type="javax.baja.ui.BLabel" x="23.0" y="70.0" w="50.0" h="15.0" default_text="OVERRIDE" icon_path=""/>
|
||||
<lbl_middle_room type="javax.baja.ui.BLabel" x="100.0" y="70.0" w="30.0" h="15.0" default_text="ROOM" icon_path=""/>
|
||||
<lbl_middle_setpoint type="javax.baja.ui.BLabel" x="134.0" y="70.0" w="48.0" h="15.0" default_text="SETPOINT" icon_path=""/>
|
||||
<lbl_middle_temperature type="javax.baja.ui.BLabel" x="185.0" y="70.0" w="72.0" h="15.0" default_text="TEMPERATURE" icon_path=""/>
|
||||
<lbl_remaining type="javax.baja.ui.BLabel" x="17.0" y="82.0" w="58.0" h="15.0" default_text="REMAINING" icon_path=""/>
|
||||
<lbl_percent_sym type="javax.baja.ui.BLabel" x="190.0" y="82.0" w="10.0" h="15.0" default_text="%" icon_path=""/>
|
||||
<lbl_ppm type="javax.baja.ui.BLabel" x="200.0" y="82.0" w="25.0" h="15.0" default_text="PPM" icon_path=""/>
|
||||
<lbl_am type="javax.baja.ui.BLabel" x="190.0" y="92.0" w="19.0" h="15.0" default_text="AM" icon_path=""/>
|
||||
<lbl_cfm type="javax.baja.ui.BLabel" x="206.0" y="92.0" w="25.0" h="15.0" default_text="CFM" icon_path=""/>
|
||||
<lbl_pm type="javax.baja.ui.BLabel" x="190.0" y="102.0" w="19.0" h="15.0" default_text="PM" icon_path=""/>
|
||||
<lbl_ls type="javax.baja.ui.BLabel" x="204.0" y="102.0" w="25.0" h="15.0" default_text="L/S" icon_path=""/>
|
||||
<lbl_cm type="javax.baja.ui.BLabel" x="190.0" y="112.0" w="19.0" h="15.0" default_text="CM" icon_path=""/>
|
||||
<lbl_inch type="javax.baja.ui.BLabel" x="190.0" y="122.0" w="30.0" h="15.0" default_text="INCH" icon_path=""/>
|
||||
<itf_bottomLine type="javax.baja.ui.shape.BLine" x="6.0" y="34.0" w="20.0" h="50.0" default_text="bottom line" icon_path=""/>
|
||||
<lbl_left_prev type="javax.baja.ui.BLabel" x="3.0" y="137.0" w="30.0" h="15.0" default_text="PREV" icon_path=""/>
|
||||
<lbl_left_done type="javax.baja.ui.BLabel" x="32.0" y="137.0" w="30.0" h="15.0" default_text="DONE" icon_path=""/>
|
||||
<lbl_left_set_homescreen type="javax.baja.ui.BLabel" x="3.0" y="147.0" w="90.0" h="15.0" default_text="SET HOMESCREEN" icon_path=""/>
|
||||
<lbl_left_fan type="javax.baja.ui.BLabel" x="32.0" y="147.0" w="30.0" h="15.0" default_text="FAN" icon_path=""/>
|
||||
<lbl_mid_edit type="javax.baja.ui.BLabel" x="92.0" y="137.0" w="30.0" h="15.0" default_text="EDIT" icon_path=""/>
|
||||
<lbl_mid_cancel type="javax.baja.ui.BLabel" x="120.0" y="137.0" w="40.0" h="15.0" default_text="CANCEL" icon_path=""/>
|
||||
<lbl_mid_set_viewmore type="javax.baja.ui.BLabel" x="92.0" y="147.0" w="90.0" h="15.0" default_text="SET VIEWMORE" icon_path=""/>
|
||||
<lbl_mid_override type="javax.baja.ui.BLabel" x="120.0" y="147.0" w="45.0" h="15.0" default_text="OVERRIDE" icon_path=""/>
|
||||
<lbl_right_next type="javax.baja.ui.BLabel" x="182.0" y="137.0" w="30.0" h="15.0" default_text="NEXT" icon_path=""/>
|
||||
<lbl_right_system type="javax.baja.ui.BLabel" x="208.0" y="137.0" w="45.0" h="15.0" default_text="SYSTEM" icon_path=""/>
|
||||
<lbl_right_and_sym type="javax.baja.ui.BLabel" x="184.0" y="147.0" w="10.0" h="15.0" default_text="AND" icon_path=""/>
|
||||
<lbl_right_viewmore type="javax.baja.ui.BLabel" x="198.0" y="147.0" w="60.0" h="15.0" default_text="VIEW MORE" icon_path=""/>
|
||||
<lbl_right_parameter type="javax.baja.ui.BLabel" x="186.0" y="157.0" w="60.0" h="15.0" default_text="PARAMETER" icon_path=""/>
|
||||
<lbl_fan_blade_seg type="javax.baja.ui.BLabel" x="4.0" y="125.0" w="60.0" h="15.0" default_text="fanBlade" icon_path="local:|module://axEditor/icons/fan_blade_segment.png"/>
|
||||
</bpane_simulationUI>
|
||||
<widget_name type="javax.baja.ui.shape.BLine" x="193.0" y="24.0" w="100.0" h="30.0" default_text="Default Text" icon_path=""/>
|
||||
</wizard_pane>-->
|
||||
</panes>
|
||||
|
||||
+988
@@ -0,0 +1,988 @@
|
||||
<?xml version='1.0'?>
|
||||
<WebUIFrameworkCfg>
|
||||
|
||||
<InitParam>
|
||||
<Name>name1</Name>
|
||||
<Value>val</Value>
|
||||
</InitParam>
|
||||
|
||||
<InitParam>
|
||||
<Name>name2</Name>
|
||||
<Value>val</Value>
|
||||
</InitParam>
|
||||
|
||||
<InitParam>
|
||||
<Name>name3</Name>
|
||||
<Value>val</Value>
|
||||
</InitParam>
|
||||
|
||||
<CommonForwards>
|
||||
<Forward name="error" uri="error.jsp"/>
|
||||
</CommonForwards>
|
||||
|
||||
<ActionList>
|
||||
<Action name="loadSbusWallModuleAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadSBusWallModule</ClassName>
|
||||
<Bean name="sBusWallModule" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule" scope="session"/>
|
||||
<Bean name="resourceOptimization" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.util.BKFResourceOptimization" scope="session"/>
|
||||
<Bean name="resourceCounter" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.resourceCounter.BKFResourceCounter" scope="session"/>
|
||||
<Bean name="sBusWallModuleInReq" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="onLoadAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOnLoad</ClassName>
|
||||
<Bean name="sBusWallModule" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule" scope="session"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
<Action name="chkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingCheckBox</ClassName>
|
||||
<Bean name="modelConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BModelConfig" scope="request"/>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
<Action name="twoWireChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingTwoWireCheckBox</ClassName>
|
||||
<Bean name="modelConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BModelConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
<Action name="blockNameAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionWallModuleBlockName</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="modelFilterationAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingModelSelection</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Bean name="modelConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BModelConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="setWallModuleAddressAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingWMAddress</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="setTimeDisplayFormatAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingTimeDisplayFormat</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="addLcdModelDetails">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingAddApplDetails</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="setApplicationTypeAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingApplicationType</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="selectModelAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenSettingSelectModel</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="nonLCDSettingAction">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGenNonLCDModelSettings</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Bean name="modelConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BModelConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<!-- Occupancy Override Entry-->
|
||||
<Action name="occOverrideOnLoadAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccupancyOverrideOnLoad</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="occShowAdvanceSettingsAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccShowAdvancedSettings</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="occOverrideEnableChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccupancyOverrideEnable</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="resourceCountExceeds" type="view" uri="resourceCountExceeds"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
</Action>
|
||||
|
||||
<Action name="occupiedChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccEnableOccupied</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="unOccupiedChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccEnableUnOccupied</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="standbyChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccEnableStandby</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="showEffOccStatusAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionShowEffOccStatus</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="showInParamExceedsWarning" type="view" uri="showInParamExceedsWarning"/>
|
||||
</Action>
|
||||
|
||||
<Action name="showOccOverrideStatusAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionShowOccOverrideStatus</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="showInParamExceedsWarning" type="view" uri="showInParamExceedsWarning"/>
|
||||
</Action>
|
||||
|
||||
<Action name="doNotShowOccOverStatusAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionDoNotShowOccOverStatus</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="saveOverrideDetailsConfigAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSaveOverrideDetailsConfig</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="overrideDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOverrideDetailsConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="daysMinMaxError" type="view" uri="error"/>
|
||||
<Forward name="hoursMinMaxError" type="view" uri="error"/>
|
||||
<Forward name="emptyError" type="view" uri="error"/>
|
||||
<Forward name="minDaysRangeError" type="view" uri="error"/>
|
||||
<Forward name="maxDaysRangeError" type="view" uri="error"/>
|
||||
<Forward name="minHoursRangeError" type="view" uri="error"/>
|
||||
<Forward name="maxHoursRangeError" type="view" uri="error"/>
|
||||
<Forward name="minMinutesRangeError" type="view" uri="error"/>
|
||||
<Forward name="maxMinutesRangeError" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="resourceCountExceeds" type="view" uri="resourceCountExceeds"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
</Action>
|
||||
|
||||
<Action name="occOverrideUnLoadAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOccOverrideUnLoad</ClassName>
|
||||
<Bean name="occupancyOverrideConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyOverrideConfig" scope="request"/>
|
||||
<Bean name="occupancyValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOccupancyValuesConfig" scope="request"/>
|
||||
<Forward name="overrideNotSelected" type="view" uri="current"/>
|
||||
<Forward name="occValuesNotUnique" type="view" uri="error"/>
|
||||
<Forward name="noSelectionMadeAndOccValuesNotUnique" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<!-- End of Occupancy Override -->
|
||||
|
||||
<!-- Fan -->
|
||||
<Action name="defaultStatusSelectionAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanStatusDefault</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="fanStateEnableChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanStateEnable</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Bean name="fanAdvancedSettingsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="setPtMemExceeded" type="view" uri="setPtMemExceeded"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="fanNetworkStPointEnableChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanStateEnable</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="setPtMemExceeded" type="view" uri="setPtMemExceeded"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="fanStateSelectionAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanStateSelection</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Bean name="fanAdvancedSettingsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="fanShowAdavancedSettingsAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanShowAdvancedSettings</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Bean name="fanAdvancedSettingsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="fanStoreAdvSettingsAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanStoreAdvSettings</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Bean name="fanAdvancedSettingsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="fanKeySelectionAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanKeySelection</ClassName>
|
||||
<Bean name="fanCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandConfig" scope="request"/>
|
||||
<Bean name="fanAdvancedSettingsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BFanCommandValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<!-- Fan ends-->
|
||||
|
||||
|
||||
<!-- System -->
|
||||
<Action name="sysStatusEnableCheckBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionShowSysStatus</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Bean name="systemStatusValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemStatusValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="inParamCountExceeded" type="view" uri="inParamCountExceeded"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="defaultSysCmdSelectionAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysCommandDefault</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="sysCmdEnableChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysCommandEnable</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Bean name="systemCommandValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemCommandValuesConfig" scope="request"/>
|
||||
<Bean name="systemStatusValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemStatusValuesConfig" scope="request"/>
|
||||
<Forward name="current" type="view" uri="current"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="setPtMemExceeded" type="view" uri="setPtMemExceeded"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="sysCmdNetworkStPointEnableChkBoxAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysCommandEnable</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="setPtMemExceeded" type="view" uri="setPtMemExceeded"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="sysCmdSelectionAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysCommandSelection</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Bean name="systemCommandValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemCommandValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="sysShowAdavancedSettingsAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysStatusAndCmdAdvSettings</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Bean name="systemCommandValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemCommandValuesConfig" scope="request"/>
|
||||
<Bean name="systemStatusValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemStatusValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="sysStoreAdvSettingsAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysStoreAdvSettings</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Bean name="systemCommandValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemCommandValuesConfig" scope="request"/>
|
||||
<Bean name="systemStatusValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemStatusValuesConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="sysKeySelectionAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSysKeySelection</ClassName>
|
||||
<Bean name="sysStatusAndCommandConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig" scope="request"/>
|
||||
<Bean name="systemCommandValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemCommandValuesConfig" scope="request"/>
|
||||
<Bean name="systemStatusValuesConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSystemStatusValuesConfig" scope="request"/> <Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<!-- System ends-->
|
||||
|
||||
|
||||
|
||||
<Action name="removeParameter">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionRemoveParameter</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorForParamInHomeScreen</Validator>
|
||||
<Validator>validatorParamAssociation</Validator>
|
||||
<Forward name="cannotRemove" type="view" />
|
||||
<Forward name="associatedParamExists" type="view" />
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="addParameter">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionAddParameter</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorParamName</Validator>
|
||||
<Validator>validatorParamDescription</Validator>
|
||||
<Validator>validatorForParameterType</Validator>
|
||||
<Validator>validatorForDefaultValue</Validator>
|
||||
<Validator>validatorForLowHighLimits</Validator>
|
||||
<Validator>validatorParamEnum</Validator>
|
||||
<Forward name="limitEmpty" type="view" />
|
||||
<Forward name="invalidLimit" type="view" />
|
||||
<Forward name="invalidName" type="view" />
|
||||
<Forward name="invalidDesc" type="view" />
|
||||
<Forward name="nameExists" type="view" />
|
||||
<Forward name="invalidDecimalValues" type="view" />
|
||||
<Forward name="parametetTypeNotSupported" type="view" />
|
||||
<Forward name="typeMismatch" type="view" />
|
||||
<Forward name="invalidDefaultSensorValue" type="view" />
|
||||
<Forward name="invalidForOffset" type="view" />
|
||||
<Forward name="invalidForSensors" type="view" />
|
||||
<Forward name="invalidValues" type="view" />
|
||||
<Forward name="invalidRangeForIncDec" type="view" />
|
||||
<Forward name="associateParamNotExists" type="view" />
|
||||
<Forward name="InvalidNullValue" type="view" />
|
||||
<Forward name="emptyEnumKeyValue" type="view" />
|
||||
<Forward name="enumParamAssociation" type="view" />
|
||||
<Forward name="exceedParamEnumLimit" type="view" />
|
||||
<Forward name="maxParamCountPerCategory" type="view" uri="error"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="invalidIncDecValue" type="view" uri="invalidIncDecValue"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="removeCategory">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionRemoveCategory</ClassName>
|
||||
<Bean name="categoryParameterConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryParameterConfig" scope="request"/>
|
||||
<Validator>validatorRemoveCatForHS</Validator>
|
||||
<Forward name="cannotRemove" type="view" />
|
||||
<Validator>validatorParamAssociation</Validator>
|
||||
<Forward name="associatedParamExists" type="view" />
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="addCategory">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionAddCategory</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorCatName</Validator>
|
||||
<Validator>validatorCatDescription</Validator>
|
||||
<Forward name="invalidName" type="view" />
|
||||
<Forward name="invalidDesc" type="view" />
|
||||
<Forward name="nameExists" type="view" />
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="totalLableCountExceed" type="view" uri="totalLableCountExceed"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="maxCategoriesLimitExceeded" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="editCategory">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionEditCategory</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorCatName</Validator>
|
||||
<Validator>validatorCatDescription</Validator>
|
||||
<Forward name="invalidName" type="view" />
|
||||
<Forward name="invalidDesc" type="view" />
|
||||
<Forward name="nameExists" type="view" />
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="totalLableCountExceed" type="view" uri="totalLableCountExceed"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="maxCategoriesLimitExceeded" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="editParameter">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionEditParameter</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorParamName</Validator>
|
||||
<Validator>validatorParamDescription</Validator>
|
||||
<Validator>validatorForParameterType</Validator>
|
||||
<Validator>validatorForDefaultValue</Validator>
|
||||
<Validator>validatorForLowHighLimits</Validator>
|
||||
<Validator>validatorParamEnum</Validator>
|
||||
<Validator>validatorParamAssociation</Validator>
|
||||
<Forward name="limitEmpty" type="view" />
|
||||
<Forward name="invalidLimit" type="view" />
|
||||
<Forward name="invalidName" type="view" />
|
||||
<Forward name="invalidDesc" type="view" />
|
||||
<Forward name="nameExists" type="view" />
|
||||
<Forward name="invalidDecimalValues" type="view" />
|
||||
<Forward name="parametetTypeNotSupported" type="view" />
|
||||
<Forward name="typeMismatch" type="view" />
|
||||
<Forward name="invalidDefaultSensorValue" type="view" />
|
||||
<Forward name="invalidForOffset" type="view" />
|
||||
<Forward name="invalidForSensors" type="view" />
|
||||
<Forward name="invalidValues" type="view" />
|
||||
<Forward name="invalidRangeForIncDec" type="view" />
|
||||
<Forward name="InvalidNullValue" type="view" />
|
||||
<Forward name="emptyEnumKeyValue" type="view" />
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="enumParamAssociation" type="view" />
|
||||
<Forward name="exceedParamEnumLimit" type="view" />
|
||||
<Forward name="associateParamNotExists" type="view" />
|
||||
<Forward name="paramAssociated" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="invalidIncDecValue" type="view" uri="invalidIncDecValue"/>
|
||||
</Action>
|
||||
|
||||
<Action name="actionValidateIfParamCanBeEdited">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionEditParamInHS</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorOnEditForHSParams</Validator>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="paramExists" type="view" uri="paramExists"/>
|
||||
<Forward name="resourceCountExceeds" type="view" uri="resourceCountExceeds"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
<Forward name="timeOfDaySelectedInLeftRight" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="actionValidateIfParamCanBeAddedOrEdited">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionEditParamInHS</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorForParamCount</Validator>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="resourceCountExceeds" type="view" uri="resourceCountExceeds"/>
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalParamCountExceed" type="view" uri="totalParamCountExceed"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="totalLableCountExceed" type="view" uri="totalLableCountExceed"/>
|
||||
<Forward name="totalGroupTableCountExceed" type="view" uri="totalGroupTableCountExceed"/>
|
||||
<Forward name="totalFailDetectCountExceed" type="view" uri="totalFailDetectCountExceed"/>
|
||||
<Forward name="totalSendTableCountExceed" type="view" uri="totalSendTableCountExceed"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
|
||||
|
||||
<Action name="loadLibDialogDetailsAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadDialogDetails</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewOnLoadAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewOnLoad</ClassName>
|
||||
<Bean name="sBusWallModule" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule" scope="session"/>
|
||||
<Bean name="KFStateMachine" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.simulation.BKFStateMachine" scope="session"/>
|
||||
<Bean name="previewDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPreviewDetailsConfig" scope="request"/>
|
||||
<Forward name="resourceCountExceeds" type="view" uri="resourceCountExceeds"/>
|
||||
<Forward name="memLimitExceeded" type="view" uri="memLimitExceeded"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewUnLoadAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewOnUnload</ClassName>
|
||||
<Bean name="sBusWallModule" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule" scope="session"/>
|
||||
<Bean name="KFStateMachine" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.simulation.BKFStateMachine" scope="session"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewLeftButtonAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewLeftButton</ClassName>
|
||||
<Bean name="previewDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPreviewDetailsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewRightButtonAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewRightButton</ClassName>
|
||||
<Bean name="previewDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPreviewDetailsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewMiddleButtonAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewMiddleButton</ClassName>
|
||||
<Bean name="previewDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPreviewDetailsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewTenantViewAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewTenantView</ClassName>
|
||||
<Bean name="previewDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPreviewDetailsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<Action name="previewContractorViewAction">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPreviewContractorView</ClassName>
|
||||
<Bean name="previewDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPreviewDetailsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
</Action>
|
||||
|
||||
<!-- Home screen actions -->
|
||||
<Action name="actionHSOnLoad">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionHSOnLoad</ClassName>
|
||||
<Bean name="hsDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
</Action>
|
||||
<Action name="actionSetAsDefault">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSetAsDefault</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
</Action>
|
||||
<Action name="actionAddHS">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionAddHS</ClassName>
|
||||
<Bean name="hsDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
</Action>
|
||||
<Action name="actionRemoveHS">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionRemoveHS</ClassName>
|
||||
<Bean name="hsDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="actionSaveNewHS">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSaveNewHS</ClassName>
|
||||
<Bean name="hsDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig"></Bean>
|
||||
<Validator>validatorHSName</Validator>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
<Forward name="InvalidName" type="view" />
|
||||
<Forward name="BlankName" type="view" />
|
||||
<Forward name="NameExists" type="view" />
|
||||
<Forward name="totalParamCountExceed" type="totalParamCountExceed" />
|
||||
<Forward name="totalLableCountExceed" type="totalLableCountExceed" />
|
||||
<Forward name="actionSetAsDefault" actionName="actionSetAsDefault" type="action"/>
|
||||
<Forward name="homeScreenCountExceeded" type="view" />
|
||||
</Action>
|
||||
<Action name="actionSaveEditedHS">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionSaveEditedHS</ClassName>
|
||||
<Bean name="hsDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig"></Bean>
|
||||
<Validator>validatorHSName</Validator>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
<Forward name="InvalidName" type="view" />
|
||||
<Forward name="BlankName" type="view" />
|
||||
<Forward name="NameExists" type="view" />
|
||||
<Forward name="totalParamCountExceed" type="totalParamCountExceed" />
|
||||
<Forward name="totalLableCountExceed" type="totalLableCountExceed" />
|
||||
<Forward name="actionSetAsDefault" actionName="actionSetAsDefault" type="action"/>
|
||||
<Forward name="homeScreenCountExceeded" type="view" />
|
||||
</Action>
|
||||
<Action name="actionGetAllSensors">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionGetAllSensors</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="actionHSOnUnload">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionHSOnUnload</ClassName>
|
||||
<Validator>validatorHSUnload</Validator>
|
||||
<Forward name="noHomeScreen" type="view" />
|
||||
<Forward name="noDefaultHSPresent" type="view" />
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<!-- End of Home screen actions -->
|
||||
|
||||
<!-- Start of Schedule screen actions -->
|
||||
<Action name="actionScheduleUnLoad">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionScheduleOnUnload</ClassName>
|
||||
<Bean name="scheduleConfigBean" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BScheduleConfig" scope="request"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="actionSaveSchedule">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionChangeSchedule</ClassName>
|
||||
<Bean name="scheduleConfigBean" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BScheduleConfig" scope="request"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="checkTimeParameterHSAssociation">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionChangeSchedule</ClassName>
|
||||
<Bean name="scheduleConfigBean" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BScheduleConfig" scope="request"></Bean>
|
||||
<Validator>validatorForParamInHomeScreen</Validator>
|
||||
<Forward name="homeScreenAssoicated" type="view" />
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
|
||||
<!-- End of Schedule screen actions -->
|
||||
|
||||
<!-- Start Password screen pane -->
|
||||
|
||||
<Action name="actionPasswordUnLoad">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionPasswordOnUnload</ClassName>
|
||||
<Bean name="passwordConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPasswordConfig" scope="request"/>
|
||||
<Validator>validatorForPassword</Validator>
|
||||
<Forward name="pwdNotEmpty" type="view" />
|
||||
<Forward name="pwdExceedMaxLimit" type="view" />
|
||||
<Forward name="passwordLabelLength" type="view" />
|
||||
<Forward name="passwordTxtLength" type="view" />
|
||||
<Forward name="success" type="view" />
|
||||
</Action>
|
||||
<Action name="actionEnablePassword">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionEnablePassword</ClassName>
|
||||
<Bean name="passwordConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BPasswordConfig" scope="request"/>
|
||||
<Forward name="success" type="view" />
|
||||
</Action>
|
||||
|
||||
<!-- End Password screen pane -->
|
||||
|
||||
|
||||
<!-- Resource counter classes -->
|
||||
<Action name="showMemoryUsage">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionShowMemoryUsage</ClassName>
|
||||
<Bean name="resPopUpBean" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.resourceCounter.BKFResourcePopUpBean"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
<Forward name="resourceView" type="view" />
|
||||
</Action>
|
||||
<Action name="showMemoryMeter">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionShowMemoryMeter</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<!-- End of Resource Usage classes -->
|
||||
|
||||
<!-- Action class for finish click of wizard -->
|
||||
<Action name="actionOnFinish">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionOnFinishClick</ClassName>
|
||||
<Bean name="sBusWallModuleInReq" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
<Forward name="noOfInParamExceeded" type="view" />
|
||||
<Forward name="noOfInOutParamExceeded" type="view" />
|
||||
<Forward name="noOfSensorParamExceeded" type="view" />
|
||||
<Forward name="noOfOffsetParamExceeded" type="view" />
|
||||
<Forward name="memUsageExceeded" type="view" />
|
||||
<Forward name="modelChangedToTR23" type="view" />
|
||||
<Forward name="modelChangedToTR70" type="view" />
|
||||
</Action>
|
||||
|
||||
<!-- Action class for finish click of wizard for TR4x-->
|
||||
<Action name="tr4xActionOnFinish">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.TR4xActionOnFinishClick</ClassName>
|
||||
<Bean name="sBusWallModuleInReq" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.BSBusWallModule"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<!-- <Forward name="showMemoryUsage" type="action" />-->
|
||||
|
||||
|
||||
<Action name="addCategoryForWMType">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionAddCategoryForWMType</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="addSetPointCategory">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionAddCategoryForWMType</ClassName>
|
||||
<Bean name="generalSettingConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="actionCategoryReorder">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionCategoryReorder</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="actionParameterReorder">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionParameterReorder</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
|
||||
<Action name="actionValidateParamName">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionValidateParameterName</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig" scope="request"/>
|
||||
<Validator>validatorParamName</Validator>
|
||||
<Forward name="invalidName" type="view" />
|
||||
<Forward name="nameExists" type="view" />
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="actionLoadParameterEnum">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadParameterEnumLibrary</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="actionAddParamEnum">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadParameterEnumLibrary</ClassName>
|
||||
<Validator>validatorParamEnum</Validator>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="invalidEnumOrdinal" type="view" />
|
||||
<Forward name="invalidEnumText" type="view" />
|
||||
<Forward name="enumExist" type="view" />
|
||||
<Forward name="maximumEnumRows" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="actionModifyParamEnum">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadParameterEnumLibrary</ClassName>
|
||||
<Validator>validatorParamEnum</Validator>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="invalidEnumOrdinal" type="view" />
|
||||
<Forward name="invalidEnumText" type="view" />
|
||||
<Forward name="enumExist" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="actionRemoveParamEnumLib">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadParameterEnumLibrary</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
|
||||
<Action name="actionSaveParamEnumLib">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadParameterEnumLibrary</ClassName>
|
||||
<Validator>validatorParamEnum</Validator>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="invalidEnumName" type="view" />
|
||||
<Forward name="emptyKeyValuePair" type="view" />
|
||||
<Forward name="emptyDefaultValue" type="view" />
|
||||
<Forward name="emptyDefaultDisplay" type="view" />
|
||||
<Forward name="invalidDefaultValue" type="view" />
|
||||
<Forward name="invalidDefaultDisplay" type="view" />
|
||||
<Forward name="maximumEnumRows" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="actionSelectParamEnumLib">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionLoadParameterEnumLibrary</ClassName>
|
||||
<Validator>validatorParamEnum</Validator>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="emptyDefaultValue" type="view" />
|
||||
<Forward name="emptyDefaultDisplay" type="view" />
|
||||
<Forward name="invalidDefaultValue" type="view" />
|
||||
<Forward name="invalidDefaultDisplay" type="view" />
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="actionFanAndSysCmdType">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFanAndSysCmdTypeChange</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="setPtMemExceeded" type="view" />
|
||||
<Forward name="memUsageExceeded" type="view" uri="memUsageExceeded"/>
|
||||
<Forward name="totalProxyFileSizeExceed" type="view" uri="totalProxyFileSizeExceed"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="actionRemoveAssociatedHS">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionRemoveAssociatedHS</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="actionFileFourCalc">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFileFourCalc</ClassName>
|
||||
<Bean name="categoryDetailsConfig" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BScheduleConfig" scope="request"/>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="actionFileFiveCalc">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionFileFiveCalc</ClassName>
|
||||
<Forward name="success" type="view" />
|
||||
<Forward name="error" type="view" />
|
||||
</Action>
|
||||
<Action name="actionUpdateTimeParameters">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.actions.ActionUpdateTimeParameters</ClassName>
|
||||
<Bean name="scheduleConfigBean" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BScheduleConfig" scope="request"></Bean>
|
||||
<Forward name="success" type="view" />
|
||||
</Action>
|
||||
<Action name="saveWallModuleAddress">
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="generalSettingsCfg" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"></Bean>
|
||||
<Forward name="success" type="view" uri="success" />
|
||||
</Action>
|
||||
<Action name="saveBlockName">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="generalSettingsCfg" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="saveLanguage">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="generalSettingsCfg" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="saveWiresheetUnits">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="compBean" className="javax.baja.sys.BComponent" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="saveWMModels">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="generalSettingsCfg" className="honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BGeneralSettingsConfig" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="saveViewByTenant">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="ViewByTenantBean" className="javax.baja.sys.BComponent" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
<Action name="saveViewEditByTenant">
|
||||
<URI>/action1.act</URI>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.tr4x.ui.actions.ActionGeneralSettingsHandler</ClassName>
|
||||
<Bean name="ViewEditByTenantBean" className="javax.baja.sys.BComponent" scope="request"/>
|
||||
<Forward name="success" type="view" uri="success"/>
|
||||
<Forward name="error" type="view" uri="error"/>
|
||||
</Action>
|
||||
</ActionList>
|
||||
<ValidatorList>
|
||||
<Validator>
|
||||
<Name>validatorHSName</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationNewHS</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorHSUnload</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationHSUnload</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorParamName</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationParamName</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorCatName</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationCatName</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorParamDescription</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationParamDescription</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorCatDescription</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationCatDescription</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorForParamInHomeScreen</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationForParamInHomeScreen</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorRemoveCatForHS</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.validationRemoveCategoryForHS</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorForDefaultValue</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationForDefaultValue</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorOnEditForHSParams</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationOnEditForHSParams</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorForLowHighLimits</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationForLowHighLimits</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorForParameterType</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationForParameterType</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorForParamCount</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationForParamCount</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorForPassword</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationForPassword</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorParamEnum</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationAddParameterEnum</ClassName>
|
||||
</Validator>
|
||||
<Validator>
|
||||
<Name>validatorParamAssociation</Name>
|
||||
<ClassName>honeywellSpyderTool:com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.uivalidations.validations.ValidationParamAssociation</ClassName>
|
||||
</Validator>
|
||||
|
||||
</ValidatorList>
|
||||
</WebUIFrameworkCfg>
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.util;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOverrideDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BParamDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BSysStatusAndCommandConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.datatypes.BKFLabelStore;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.datatypes.BLimitsStore;
|
||||
|
||||
public interface IKFResAdditionCallback {
|
||||
public static final int m_CATEGORY_LABEL = 0;
|
||||
public static final int m_DO_NOT_SHOW_OCC_STATUS = 2;
|
||||
public static final int m_HIDDEN_TO_BE_CREATED = -1;
|
||||
public static final int m_LABEL_OR_LIMIT_DOES_NOT_EXIST = -255;
|
||||
public static final int m_LABEL_OR_LIMIT_NOT_SHARED = -255;
|
||||
public static final int m_OCCOVER_LABEL = 2;
|
||||
public static final int m_OCCOVER_LIMIT = 5;
|
||||
public static final int m_OVERRIDE_DAYS_STEP_COUNT = 2;
|
||||
public static final int m_OVERRIDE_HRS_STEP_COUNT = 3;
|
||||
public static final int m_PARAMETER_ENUM = 3;
|
||||
public static final int m_PARAMETER_LABEL = 1;
|
||||
public static final int m_PARAMETER_LIMIT = 4;
|
||||
public static final int m_SCHD_LABEL = 3;
|
||||
public static final int m_SHOW_OCC_OVER_STATUS = 1;
|
||||
public static final int m_SHOW_OCC_STATUS = 0;
|
||||
|
||||
void byPassSelected(boolean z);
|
||||
|
||||
int categoryAdded(BCategoryDetailsConfig bCategoryDetailsConfig, boolean z, int i, int i2);
|
||||
|
||||
boolean fanCommandEnabled(boolean z, boolean z2);
|
||||
|
||||
int getInOutParamPvid();
|
||||
|
||||
int getInParamPvid();
|
||||
|
||||
int getOutParamPvid();
|
||||
|
||||
int[] homeScreenAdded(BHomeScreenDetailsConfig bHomeScreenDetailsConfig, int[] iArr, int i);
|
||||
|
||||
boolean occupancyCommandEnabled(boolean z);
|
||||
|
||||
int occupancyOverrideAdded(BOverrideDetailsConfig bOverrideDetailsConfig, boolean z, int i, boolean z2, int i2);
|
||||
|
||||
boolean occupancyStatusSelected(int i, boolean z);
|
||||
|
||||
int parameterAdded(BParamDetailsConfig bParamDetailsConfig, boolean z, int i, boolean z2, int i2, int i3, int i4);
|
||||
|
||||
void setLabelStore(BKFLabelStore bKFLabelStore);
|
||||
|
||||
void setLimitStore(BLimitsStore bLimitsStore);
|
||||
|
||||
boolean systemCommandEnabled(BSysStatusAndCommandConfig bSysStatusAndCommandConfig, boolean z);
|
||||
|
||||
boolean systemStatusSelected(boolean z);
|
||||
}
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.util;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BCategoryDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BHomeScreenDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BKFConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BOverrideDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BParamDetailsConfig;
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.kingfisher.configuration.BScheduleConfig;
|
||||
|
||||
public interface IKFResUpdationCallback extends IKFResAdditionCallback {
|
||||
boolean alertLabelsUpdated(BKFConfig bKFConfig);
|
||||
|
||||
boolean categoryDeleted(BKFConfig bKFConfig, BCategoryDetailsConfig bCategoryDetailsConfig, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean categoryUpdated(BKFConfig bKFConfig, BCategoryDetailsConfig bCategoryDetailsConfig, BCategoryDetailsConfig bCategoryDetailsConfig2, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean homeScreenDeleted(BKFConfig bKFConfig, BHomeScreenDetailsConfig bHomeScreenDetailsConfig, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean homeScreenUpdated(BKFConfig bKFConfig, BHomeScreenDetailsConfig bHomeScreenDetailsConfig, BHomeScreenDetailsConfig bHomeScreenDetailsConfig2, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean occupancyOverrideDeleted(BKFConfig bKFConfig, BOverrideDetailsConfig bOverrideDetailsConfig, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean occupancyOverrideUpdated(BKFConfig bKFConfig, BOverrideDetailsConfig bOverrideDetailsConfig, BOverrideDetailsConfig bOverrideDetailsConfig2, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean parameterDeleted(BKFConfig bKFConfig, BParamDetailsConfig bParamDetailsConfig, String str, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean parameterUpdated(BKFConfig bKFConfig, BParamDetailsConfig bParamDetailsConfig, BParamDetailsConfig bParamDetailsConfig2, String str, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean scheduleCommandUpdated(BKFConfig bKFConfig, BScheduleConfig bScheduleConfig, BKFResourceOptimization bKFResourceOptimization);
|
||||
|
||||
boolean updateHomeScreenDefaultSet(BKFConfig bKFConfig);
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.honeywellXL10NextGen.functionalBlocks.ui;
|
||||
|
||||
import javax.baja.ui.BWidget;
|
||||
|
||||
public interface IStaticReferenceCallback {
|
||||
void makeStaticReferences(BWidget bWidget);
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<panes version="1">
|
||||
<bw_BinaryInput default_text="BinaryInput" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="320.0" h="210">
|
||||
<!--lb_BinaryIpName default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="5.0" w="50.0" h="23.0"/>
|
||||
<tf_BinaryIpName default_text="BinaryInput1" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="60.0" y="5.0" w="190.0" h="23.0"/-->
|
||||
<bpe_IpType default_text="Input Type" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="0.0" w="300.0" h="45.0">
|
||||
<lbl_Input_Type type="javax.baja.ui.BLabel" x="10.0" y="20.0" w="80.0" h="25.0" default_text="Input Type:" icon_path=""/>
|
||||
<Input_Type_Drop_Down type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="140.0" y="20.0" w="150.0" h="20.0" default_text="" icon_path=""/>
|
||||
</bpe_IpType>
|
||||
<bpe_IpState default_text="Input State" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="10.0" y="58.0" w="300.0" h="115.0">
|
||||
<rb_NorOpen default_text="Normally Open" type="javax.baja.ui.BRadioButton" x="10.0" y="20.0" w="130.0" h="20.0"/>
|
||||
<rb_NorClose default_text="Normally Close" type="javax.baja.ui.BRadioButton" x="10.0" y="50.0" w="130.0" h="20.0"/>
|
||||
<lb_IpStateNote1 default_text="Note: Input State Configuration shall be ignored for" type="javax.baja.ui.BLabel" x="10.0" y="70.0" w="300.0" h="30"/>
|
||||
<lb_IpStateNote2 default_text="binary input assigned to digital pins" type="javax.baja.ui.BLabel" x="40.0" y="85.0" w="300.0" h="30"/>
|
||||
</bpe_IpState>
|
||||
<bb_BinaryIpHelp default_text="Help" type="javax.baja.ui.BButton" x="12.0" y="180.0" w="60.0" h="20.0"/>
|
||||
<bb_BinaryIpAdvanced default_text="Advanced" type="javax.baja.ui.BButton" x="82.0" y="180.0" w="80.0" h="20.0"/>
|
||||
<bb_BinaryIpOk default_text="OK" type="javax.baja.ui.BButton" x="175.0" y="180.0" w="60.0" h="20.0"/>
|
||||
<!--bb_BinaryIpApply default_text="Apply" type="javax.baja.ui.BButton" x="29100.0" y="50.0" w="55.0" h="20.0"/-->
|
||||
<bb_BinaryIpCancel default_text="Cancel" type="javax.baja.ui.BButton" x="250.0" y="180.0" w="60.0" h="20.0"/>
|
||||
</bw_BinaryInput>
|
||||
</panes>
|
||||
@@ -0,0 +1,15 @@
|
||||
<panes version="1">
|
||||
<bw_BinaryOutput default_text="BinaryOutput" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="310.0" h="25">
|
||||
<!--lb_BinaryOpName default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="5.0" w="50.0" h="23.0"/>
|
||||
<tf_BinaryOpName default_text="BinaryOutput1" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="60.0" y="5.0" w="190.0" h="23.0"/-->
|
||||
<bpe_OpState default_text="Output State" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="29100.0" y="70.0" w="180.0" h="80.0">
|
||||
<rb_EnergOn default_text="Energized On" type="javax.baja.ui.BRadioButton" x="10.0" y="20.0" w="130.0" h="20.0"/>
|
||||
<rb_EnergOff default_text="Energized Off" type="javax.baja.ui.BRadioButton" x="10.0" y="50.0" w="130.0" h="20.0"/>
|
||||
</bpe_OpState>
|
||||
<bb_BinaryOpHelp default_text="Help" type="javax.baja.ui.BButton" x="12.0" y="5.0" w="60.0" h="20.0"/>
|
||||
<bb_BinaryOpAdvanced default_text="Advanced" type="javax.baja.ui.BButton" x="82.0" y="5.0" w="80.0" h="20.0"/>
|
||||
<bb_BinaryOpOk default_text="OK" type="javax.baja.ui.BButton" x="175.0" y="5.0" w="60.0" h="20.0"/>
|
||||
<!--bb_BinaryOpApply default_text="Apply" type="javax.baja.ui.BButton" x="29100.0" y="50.0" w="55.0" h="20.0"/-->
|
||||
<bb_BinaryOpCancel default_text="Cancel" type="javax.baja.ui.BButton" x="250.0" y="5.0" w="60.0" h="20.0"/>
|
||||
</bw_BinaryOutput>
|
||||
</panes>
|
||||
@@ -0,0 +1,88 @@
|
||||
package com.honeywell.honeywellXL10NextGen.io;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.enums.BIOTypesEnum;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOTerminal;
|
||||
|
||||
public interface IIOInfoInterface {
|
||||
int getAITypeIdentifier();
|
||||
|
||||
int getAOTypeIdentifier();
|
||||
|
||||
String getAddressAlignment(int i, int i2);
|
||||
|
||||
int getAddressIndex(int i, int i2);
|
||||
|
||||
String getAddressLabel(int i, int i2);
|
||||
|
||||
String[] getAddressLabel(IOAddressDetails iOAddressDetails);
|
||||
|
||||
short getAddressPosition(int i, int i2);
|
||||
|
||||
String getConfigViewForFB(String str);
|
||||
|
||||
int getDITypeIdentifier();
|
||||
|
||||
int getDOTypeIdentifier();
|
||||
|
||||
String getDefaultOutputType(BIPhysicalPointInterface bIPhysicalPointInterface);
|
||||
|
||||
String getDefaultOutputType(BIOTerminal bIOTerminal);
|
||||
|
||||
String getHelpFilePathForFB(String str);
|
||||
|
||||
BIOTypesEnum getIOType(BIPhysicalPointInterface bIPhysicalPointInterface);
|
||||
|
||||
BIOTypesEnum getIOType(BIOTerminal bIOTerminal);
|
||||
|
||||
float getMAmpsHighForAO();
|
||||
|
||||
float getMAmpsLowForAO();
|
||||
|
||||
int getMaxConfigurableIO(int i);
|
||||
|
||||
int getMaxIOCount(String str, String str2);
|
||||
|
||||
int getMiscTypeIdentifier();
|
||||
|
||||
int getNumberOfTerminals();
|
||||
|
||||
String getOutputType(BIPhysicalPointInterface bIPhysicalPointInterface);
|
||||
|
||||
String getOutputType(BIOTerminal bIOTerminal);
|
||||
|
||||
String[] getReservedIOAddresses(String str, String str2);
|
||||
|
||||
String getReservedTypeIO(IOAddressDetails iOAddressDetails, String str);
|
||||
|
||||
String[] getReservedTypeIOs(IOAddressDetails iOAddressDetails, String str);
|
||||
|
||||
String getSimulationForFB(String str);
|
||||
|
||||
String[] getSupportedIONames(String str, int i);
|
||||
|
||||
String getViewXmlPathForFB(String str);
|
||||
|
||||
float getVoltsHighForAO();
|
||||
|
||||
float getVoltsLowForAO();
|
||||
|
||||
boolean isAddressHidden(int i, int i2);
|
||||
|
||||
boolean isAddressPreassigned(int i, int i2);
|
||||
|
||||
boolean isAddressReserved(int i, int i2);
|
||||
|
||||
boolean isFastDigitalIO(BIPhysicalPointInterface bIPhysicalPointInterface);
|
||||
|
||||
boolean isIOReservedType(BIPhysicalPointInterface bIPhysicalPointInterface);
|
||||
|
||||
boolean isIOReservedType(BIOTerminal bIOTerminal);
|
||||
|
||||
boolean isPinPresent(int i);
|
||||
|
||||
boolean isReservedIO(BIPhysicalPointInterface bIPhysicalPointInterface);
|
||||
|
||||
boolean isReservedIO(BIOTerminal bIOTerminal);
|
||||
|
||||
boolean isSupportedIO(String str, String str2);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.honeywell.honeywellXL10NextGen.io;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIMacro;
|
||||
|
||||
public interface IIORestorer {
|
||||
void restoreAllIOs(BIMacro bIMacro);
|
||||
|
||||
void restoreIO(BIOComponent bIOComponent);
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Document : CommonIO.xml
|
||||
Created on : December 5, 2006, 7:02 PM
|
||||
Author : E324325
|
||||
Description:
|
||||
Purpose of the document follows.
|
||||
-->
|
||||
<IO>
|
||||
<!-- ........ModulatingOutput ....... -->
|
||||
<Types>
|
||||
<ModulatingOutput>
|
||||
<Analog v="0" >
|
||||
<Properties>
|
||||
<OutputType n="OutputType" v="0" type="int" flags="0"/> <!-- Should match the value v in analog -->
|
||||
<ZeroPercent n="ZeroPercent" v="0.00" type="float" flags="0" min="0.00" max="100.00"/>
|
||||
<FullPercent n="FullPercent" v="10.00" type="float" flags="0" min="0.00" max="100.00"/>
|
||||
</Properties>
|
||||
</Analog>
|
||||
<Floating v="1" >
|
||||
<Properties>
|
||||
<OutputType n="OutputType" v="1" type="int" flags="0"/> <!-- Should match the value v in Floating -->
|
||||
<TravelTime n="TravelTime" v="0" type="float" flags="0" min="0.00" max="3276.70"/>
|
||||
<AutoSyncType n="AutoSyncType" v="0" type="int" flags="0"/>
|
||||
<AutoSyncInterval n="AutoSyncInterval" v="0.0" type="float" flags="0" min="0.0" max="255.0"/>
|
||||
<PowerupSyncType n="PowerupSyncType" v="0" type="int" flags="0"/>
|
||||
<PowerupDelay n="PowerupDelay" v="0" type="float" flags="0" min="0.00" max="3276.70"/>
|
||||
<MotorAction n="MotorAction" v="true" type="boolean" flags="0"/>
|
||||
</Properties>
|
||||
</Floating>
|
||||
<Pwm v="2" >
|
||||
<Properties>
|
||||
<OutputType n="OutputType" v="2" type="int" flags="0"/> <!-- Should match the value v in Pwm -->
|
||||
<Period n="Period" v="25.6" type="float" flags="0" min="0.10" max="3276.70"/>
|
||||
<ZeroTime n ="ZeroTime" v="0.1" type="float" flags="0" min="0.0" max="3276.70"/>
|
||||
<FullTime n ="FullTime" v="25.5" type="float" flags="0" min="0.0" max="3276.70"/>
|
||||
</Properties>
|
||||
</Pwm>
|
||||
<Actuator v="3" subtype = "Floating">
|
||||
<Properties>
|
||||
<OutputType n="OutputType" v="3" type="int" flags="0"/> <!-- Should match the value v in Actuator -->
|
||||
<TravelTime n="TravelTime" v="90.00" type="float" flags="0" min="0.00" max="3276.70"/>
|
||||
<AutoSyncType n="AutoSyncType" v="0" type="int" flags="0"/>
|
||||
<AutoSyncInterval n="AutoSyncInterval" v="0.0" type="float" flags="0" min="0.0" max="255.0"/>
|
||||
<PowerupSyncType n="PowerupSyncType" v="0" type="int" flags="0"/>
|
||||
<PowerupDelay n="PowerupDelay" v="0.00" type="float" flags="0" min="0.00" max="3276.70"/>
|
||||
<MotorAction n="MotorAction" v="true" type="boolean" flags="0"/>
|
||||
</Properties>
|
||||
</Actuator>
|
||||
</ModulatingOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
<Properties>
|
||||
<SensorType n="SensorType" v="0" type="int" flags="0"/> <!--value in v indicates the SensorType in sensors tag; eg 0 = kntc20 -->
|
||||
<!-- DataType will created as a unit facets -->
|
||||
<DataType n="DataType" v="celsius" type="BUnit" flags="0"/> <!-- value in v should match the "disnam" in units XL10NextGenXML\lonXL10NextGen_Units.xml-->
|
||||
<InputLow n="InputLow" v="70200.00" type="float" flags="0"/>
|
||||
<InputHigh n="InputHigh" v="1114.00" type="float" flags="0"/>
|
||||
<OutputLow n="OutputLow" v="0.00" type="float" flags="0"/>
|
||||
<OutputHigh n="OutputHigh" v="100.00" type="float" flags="0"/>
|
||||
<SensorLow n="SensorLow" v="-45" type="float" flags="0"/>
|
||||
<SensorHigh n="SensorHigh" v="112" type="float" flags="0"/>
|
||||
<InvalidType n="InvalidType" v="0" type="int" flags="0"/>
|
||||
<InputUnit n="InputUnit" v="ohms" type="String" flags="h1"/>
|
||||
<!-- <DataCategory n="DataCategory" v="17" type="int" flags="0"/> ==> dropped out can be got from units itself by accessing xml
|
||||
<DataType n="DataType" v="0" type="int" flags="0"/> ==> moved to facets -->
|
||||
</Properties>
|
||||
|
||||
<Sensors>
|
||||
<Kntc20 n="Kntc20" SensorType="0" DataCategory="Temperature" DataType="celsius" InputLow="70200" InputHigh="1114" OutputLow="0.00" OutputHigh="100.00" InputUnit = "ohms" InputUnitPrecision = "0" SensorLow="-45" SensorHigh="112" Type="celsius"/>
|
||||
<Pt1000 n="Pt1000" SensorType="1" DataCategory="Temperature" DataType="celsius" InputLow="1000" InputHigh="1385" OutputLow="0.00" OutputHigh="100.00" InputUnit = "ohms" InputUnitPrecision = "0" SensorLow="-100" SensorHigh="200" Type="celsius"/>
|
||||
<CustomResistive n="CustomResistive" SensorType="2" DataCategory="Temperature" DataType ="celsius" InputLow="500" InputHigh="10500" OutputLow="0.00" OutputHigh="10.00" InputUnit = "ohms" InputUnitPrecision = "0" SensorLow="27" SensorHigh="200000" Type="celsius"/>
|
||||
<C7400A n="C7400A" SensorType="3" DataCategory="current" DataType="milliampere" InputLow="2.00" InputHigh="10.00" OutputLow="4.0" OutputHigh="20.0" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="0" SensorHigh="10.3" Type="milliampere"/>
|
||||
<C7632A n="C7632A" SensorType="4" DataCategory="PartsperMillion" DataType="partspermillion" InputLow="0.00" InputHigh="10.00" OutputLow="0" OutputHigh="2000" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="0" SensorHigh="10.3" Type="parts per million"/>
|
||||
<C7632B n="C7632B" SensorType="5" DataCategory="PartsperMillion" DataType="partspermillion" InputLow="0.00" InputHigh="10.00" OutputLow="0" OutputHigh="2000" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="0" SensorHigh="10.3" Type="parts per million"/>
|
||||
<C7600B n="C7600B" SensorType="6" DataCategory="Percentage" DataType="percent" InputLow="2.00" InputHigh="10.00" OutputLow="0.000" OutputHigh="100.000" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="0" SensorHigh="10.3" Type="percent"/>
|
||||
<H7655A n="H7655A" SensorType="7" DataCategory="Percentage" DataType="percent" InputLow="0.00" InputHigh="10.00" OutputLow="0.000" OutputHigh="100.000" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="0" SensorHigh="10.3" Type="percent"/>
|
||||
<CustomVoltage n="CustomVoltage" SensorType="8" DataCategory="Temperature" DataType="celsius" InputLow="0.00" InputHigh="10.00" OutputLow="0.00" OutputHigh="10.00" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="0" SensorHigh="10.3" Type="celsius"/>
|
||||
<On_Board_Pressure subtype ="CustomVoltage" n="On_Board_Pressure" SensorType="9" DataCategory="Pressure" DataType="pascal" InputLow="0.00" InputHigh="10.30" OutputLow="0.00" OutputHigh="1.00" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="-12.3" SensorHigh="394" Type="pascal"/>
|
||||
<Pulse_Meter subtype="" n="Pulse_Meter" SensorType="10" DataCategory="Unit - less" DataType="VAL-float" InputLow="-1" InputHigh="-1" OutputLow="-1" OutputHigh="-1" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="-1" SensorHigh="-1" Type="kilowatthour"/>
|
||||
<Counter subtype="" n="Counter" SensorType="11" DataCategory="Unit - less" DataType="VAL-float" InputLow="-1" InputHigh="-1" OutputLow="-1" OutputHigh="-1" InputUnit = "volts" InputUnitPrecision = "2" SensorLow="-1" SensorHigh="-1" Type="VAL-float"/>
|
||||
<Kntc20_TR20_Series n="Kntc20_TR20_Series" SensorType="12" DataCategory="Temperature" DataType="celsius" InputLow="10000" InputHigh="80000" OutputLow="0.00" OutputHigh="100.00" InputUnit = "ohms" InputUnitPrecision = "0" SensorLow="-45" SensorHigh="112" Type="celsius"/>
|
||||
<CustomSensor n="CustomSensor" SensorType="13" DataCategory="Temperature" DataType="celsius" InputLow="0" InputHigh="300000" OutputLow="0.00" OutputHigh="0" InputUnit = "ohms" InputUnitPrecision = "4" SensorLow="0" SensorHigh="0" Type="celsius"/>
|
||||
</Sensors>
|
||||
</ModulatingInput>
|
||||
|
||||
<BinaryOutput>
|
||||
<Properties>
|
||||
<OutputState n="OutputState" v="true" type="boolean" flags="0"/>
|
||||
<In n="In" v="0" type="BStatusNumeric" flags="s"/>
|
||||
</Properties>
|
||||
</BinaryOutput>
|
||||
|
||||
<BinaryInput>
|
||||
<Properties>
|
||||
<InputState n="InputState" v="true" type="boolean" flags="0"/>
|
||||
<InputType n="InputType" v="0" type="BEnumDIInputType" flags="0"/>
|
||||
</Properties>
|
||||
</BinaryInput>
|
||||
</Types>
|
||||
|
||||
<Enums>
|
||||
<!-- make sure the ordinal values for all the models supporting modulating output floating uses same ordinals -->
|
||||
<ModOpAutoSyncType>
|
||||
<None v="0"/>
|
||||
<SyncClosed v="1"/>
|
||||
<SyncOpen v="2"/>
|
||||
</ModOpAutoSyncType>
|
||||
|
||||
<ModOpPowerupSyncType>
|
||||
<None v="0"/>
|
||||
<SyncClosed v="1"/>
|
||||
<SyncOpen v="2"/>
|
||||
</ModOpPowerupSyncType>
|
||||
|
||||
<!-- make sure the ordinal values are in sync with the BAnalogOutputModeEnum in FunctionalBlocks.Enums -->
|
||||
<!-- make sure the "sym" matches with the "s" in XL10NextGenXML\lonXL10NextGen_Units.xml -->
|
||||
<ModOpAnalogType>
|
||||
<Volts v="0" sym="V"/> <!-- sym stands for symbol -->
|
||||
<milliAmps v="1" sym="mA"/>
|
||||
</ModOpAnalogType>
|
||||
|
||||
<DigInputType>
|
||||
<Maintained v="0"/>
|
||||
<Momentary v="1"/>
|
||||
<PulseMeter v="2"/>
|
||||
<Counter v="3"/>
|
||||
<UnDefined v="4"/>
|
||||
</DigInputType>
|
||||
|
||||
|
||||
</Enums>
|
||||
|
||||
</IO>
|
||||
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Document : ModelSpecificIO.xml
|
||||
Created on : December 5, 2006, 7:03 PM
|
||||
Author : E324325
|
||||
Description:
|
||||
Purpose of the document follows.
|
||||
-->
|
||||
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<On_Board_Pressure maxCount="1" >
|
||||
<Pin v="31"/>
|
||||
</On_Board_Pressure>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std> <!-- the following sensors are supported by this model -->
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
<Actuator maxCount="1">
|
||||
<Pin v="17"/>
|
||||
<Pin v="18"/>
|
||||
</Actuator>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
</IO>
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<On_Board_Pressure maxCount="1">
|
||||
<Pin v="18"/>
|
||||
</On_Board_Pressure>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std>
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
<Fixed>
|
||||
<On_Board_Pressure maxCount="1">
|
||||
<Pin v="18"/>
|
||||
</On_Board_Pressure>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std>
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
<Actuator maxCount="1">
|
||||
<Pin v="12"/>
|
||||
<Pin v="13"/>
|
||||
</Actuator>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="19"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std>
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
<Pin v="14"/>
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="14"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="14"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="14"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std>
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<On_Board_Pressure maxCount="1">
|
||||
<Pin v="14"/>
|
||||
</On_Board_Pressure>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std>
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
<Actuator maxCount="1">
|
||||
<Pin v="12"/>
|
||||
<Pin v="13"/>
|
||||
</Actuator>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Document : ModelSpecificIO.xml
|
||||
Created on : December 5, 2006, 7:03 PM
|
||||
Author : E324325
|
||||
Description:
|
||||
Purpose of the document follows.
|
||||
-->
|
||||
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<On_Board_Pressure maxCount="1">
|
||||
<Pin v="31"/>
|
||||
</On_Board_Pressure>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std> <!-- the following sensors are supported by this model -->
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
<Actuator maxCount="1">
|
||||
<Pin v="17"/>
|
||||
<Pin v="18"/>
|
||||
</Actuator>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Document : ModelSpecificIO.xml
|
||||
Created on : December 5, 2006, 7:03 PM
|
||||
Author : E324325
|
||||
Description:
|
||||
Purpose of the document follows.
|
||||
-->
|
||||
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<On_Board_Pressure maxCount="1">
|
||||
<Pin v="31"/>
|
||||
</On_Board_Pressure>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std> <!-- the following sensors are supported by this model -->
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
</IO>
|
||||
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Document : ModelSpecificIO.xml
|
||||
Created on : December 5, 2006, 7:03 PM
|
||||
Author : E324325
|
||||
Description:
|
||||
Purpose of the document follows.
|
||||
-->
|
||||
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
|
||||
<Fixed>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std> <!-- the following sensors are supported by this model -->
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<!-- BeginGearsBlock XML UNSUPPORTED_NOVOR_SENSOR -->
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<!-- EndGearsBlock XML UNSUPPORTED_NOVOR_SENSOR -->
|
||||
<C7632A/>
|
||||
<!-- BeginGearsBlock XML UNSUPPORTED_NOVOR_SENSOR -->
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<!-- EndGearsBlock XML UNSUPPORTED_NOVOR_SENSOR -->
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
|
||||
</ModulatingInput>
|
||||
|
||||
|
||||
<ModulatingOutput>
|
||||
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm/>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Custom>
|
||||
<Maintained maxCount="1">
|
||||
</Maintained>
|
||||
</Custom>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
<Fixed>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
|
||||
<Std> <!-- the following sensors are supported by this model -->
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
</Custom>
|
||||
</ModulatingInput>
|
||||
|
||||
<ModulatingOutput>
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pwm>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<panes version="1">
|
||||
<bw_ModulatingInput default_text="ModulatingInput" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="510.0" h="255">
|
||||
<!--lb_ModIpName default_text="Name" type="javax.baja.ui.BLabel" x="30.0" y="30.0" w="70.0" h="20.0"/>
|
||||
<tf_ModIpName default_text="ModulatingInput1" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="120.0" y="30.0" w="150.0" h="20.0"/-->
|
||||
<lb_ModIpType default_text="Type" type="javax.baja.ui.BLabel" x="11.0" y="0.0" w="60.0" h="20.0"/>
|
||||
<edd_ModIpType default_text="KNTC20" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="154.0" y="0.0" w="155.0" h="20.0"/>
|
||||
<bb_ConfigCustSensorPointsButton default_text="Custom Sensor Configuration" type="javax.baja.ui.BButton" x="320.0" y="0.0" w="190.0" h="20.0"/>
|
||||
<lb_ModIpDataCat default_text="Data Category" type="javax.baja.ui.BLabel" x="11.0" y="35.0" w="70.0" h="20.0"/>
|
||||
<edd_ModIpDataCat default_text="Temperature" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="154.0" y="35.0" w="155.0" h="20.0"/>
|
||||
<lb_ModIpDataType default_text="DataType" type="javax.baja.ui.BLabel" x="11.0" y="70.0" w="70.0" h="20.0"/>
|
||||
<edd_ModIpDataType default_text="F" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="154.0" y="70.0" w="155.0" h="20.0"/>
|
||||
<bpe_ModOpSensor default_text="Input State" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="6.0" y="105.0" w="500.0" h="100.0">
|
||||
<lb_IpLow default_text="Input Low" type="javax.baja.ui.BLabel" x="10.0" y="30.0" w="70.0" h="20.0"/>
|
||||
<tf_IpLow default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="93.0" y="30.0" w="100.0" h="20.0"/>
|
||||
<lb_IpLowUnit default_text="ohms" type="javax.baja.ui.BLabel" x="196.0" y="30.0" w="50.0" h="20.0"/>
|
||||
<lb_OpLow default_text="Output Low" type="javax.baja.ui.BLabel" x="260.0" y="30.0" w="70.0" h="20.0"/>
|
||||
<tf_OpLow default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="343.0" y="30.0" w="100.0" h="20.0"/>
|
||||
<lb_OpLowUnit default_text="ohms" type="javax.baja.ui.BLabel" x="446.0" y="30.0" w="100.0" h="20.0"/>
|
||||
<lb_IpHigh default_text="Input High" type="javax.baja.ui.BLabel" x="10.0" y="60.0" w="70.0" h="20.0"/>
|
||||
<tf_IpHigh default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="93.0" y="60.0" w="100.0" h="20.0"/>
|
||||
<lb_IpHighUnit default_text="ohms" type="javax.baja.ui.BLabel" x="196.0" y="60.0" w="50.0" h="20.0"/>
|
||||
<lb_OpHigh default_text="Output High" type="javax.baja.ui.BLabel" x="260.0" y="60.0" w="70.0" h="20.0"/>
|
||||
<tf_OpHigh default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="343.0" y="60.0" w="100.0" h="20.0"/>
|
||||
<lb_OpHighUnit default_text="ohms" type="javax.baja.ui.BLabel" x="446.0" y="60.0" w="100.0" h="20.0"/>
|
||||
</bpe_ModOpSensor>
|
||||
<bb_ModulatingIpHelp default_text="Help" type="javax.baja.ui.BButton" x="11.0" y="230.0" w="60.0" h="20.0"/>
|
||||
<bb_ModulatingIpAdvanced default_text="Advanced" type="javax.baja.ui.BButton" x="195.0" y="230.0" w="100.0" h="20.0"/>
|
||||
<bb_ModulatingIpSensorLimits default_text="Sensor Limits" type="javax.baja.ui.BButton" x="81.0" y="230.0" w="100.0" h="20.0"/>
|
||||
<bb_ModulatingIpOk default_text="OK" type="javax.baja.ui.BButton" x="370.0" y="230.0" w="60.0" h="20.0"/>
|
||||
<!--bb_ModulatingIpApply default_text="Apply" type="javax.baja.ui.BButton" x="371.0" y="230.0" w="60.0" h="20.0"/-->
|
||||
<bb_ModulatingIpCancel default_text="Cancel" type="javax.baja.ui.BButton" x="445.0" y="230.0" w="60.0" h="20.0"/>
|
||||
</bw_ModulatingInput>
|
||||
</panes>
|
||||
@@ -0,0 +1,51 @@
|
||||
<panes version="1">
|
||||
<bw_ModulatingOutput default_text="ModulatingOutput" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="525.0" h="405">
|
||||
<lb_ModulatingOpType default_text="Type" type="javax.baja.ui.BLabel" x="11.0" y="10.0" w="50.0" h="23.0"/>
|
||||
<edd_ModulatingOpType default_text="Analog" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="80.0" y="10.0" w="130.0" h="20.0"/>
|
||||
<lb_ModOpAnalogType default_text="Analog Type" type="javax.baja.ui.BLabel" x="300.0" y="10.0" w="60.0" h="23.0"/>
|
||||
<edd_ModOpAnalogType default_text="Volts" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="400.0" y="10.0" w="100.0" h="20.0"/>
|
||||
<bpe_OpValue default_text="Output Values" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="20.0" y="40.0" w="255.0" h="120.0">
|
||||
<lb_ModOpZeroPercent default_text="Zero Percent" type="javax.baja.ui.BLabel" x="10.0" y="30.0" w="70.0" h="20.0"/>
|
||||
<tf_ModOpZeroPercent default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="120.0" y="30.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpZeroPercentUnit default_text="Volts" type="javax.baja.ui.BLabel" x="225.0" y="30.0" w="30.0" h="20.0"/>
|
||||
<lb_ModOpFullPercent default_text="Full Percent" type="javax.baja.ui.BLabel" x="10.0" y="60.0" w="70.0" h="20.0"/>
|
||||
<tf_ModOpFullPercent default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="120.0" y="60.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpFullPercentUnit default_text="Volts" type="javax.baja.ui.BLabel" x="225.0" y="60.0" w="30.0" h="20.0"/>
|
||||
</bpe_OpValue>
|
||||
<bpe_PwmConfig default_text="PWM Configuration" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="300.0" y="40.0" w="220.0" h="120.0">
|
||||
<lb_ModOpPeriod default_text="Period" type="javax.baja.ui.BLabel" x="10.0" y="30.0" w="70.0" h="20.0"/>
|
||||
<tf_ModOpPeriod default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="100.0" y="30.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpZeroTime default_text="Zero Time" type="javax.baja.ui.BLabel" x="10.0" y="60.0" w="70.0" h="20.0"/>
|
||||
<tf_ModOpZeroTime default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="100.0" y="60.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpFullTime default_text="FullTime" type="javax.baja.ui.BLabel" x="10.0" y="90.0" w="70.0" h="20.0"/>
|
||||
<tf_ModOpFullTime default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="100.0" y="90.0" w="100.0" h="20.0"/>
|
||||
</bpe_PwmConfig>
|
||||
<bpe_FloatingMotorConfig default_text="FloatingMotorConfiguration" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="20.0" y="180.0" w="500.0" h="190.0">
|
||||
<lb_ModOpTravelTime default_text="TravelTime" type="javax.baja.ui.BLabel" x="10.0" y="30.0" w="70.0" h="20.0"/>
|
||||
<tf_ModOpTravelTime default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="120.0" y="30.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpTravelTimeUnit default_text="s" type="javax.baja.ui.BLabel" x="225.0" y="30.0" w="50.0" h="20.0"/>
|
||||
<lb_ModOpAutoSyncType default_text="AutoSyncType" type="javax.baja.ui.BLabel" x="10.0" y="60.0" w="80.0" h="20.0"/>
|
||||
<edd_ModOpAutoSyncType default_text="0" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="120.0" y="60.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpAutoSyncInterval default_text="AutoSyncInterval" type="javax.baja.ui.BLabel" x="10.0" y="90.0" w="100.0" h="20.0"/>
|
||||
<tf_ModOpAutoSyncInterval default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="120.0" y="90.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpAutoSyncIntervalUnit default_text="hrs" type="javax.baja.ui.BLabel" x="225.0" y="90.0" w="50.0" h="20.0"/>
|
||||
<lb_ModOpPowerupSyncType default_text="PowerupSyncType" type="javax.baja.ui.BLabel" x="10.0" y="120.0" w="100.0" h="20.0"/>
|
||||
<edd_ModOpPowerupSyncType default_text="0" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="120.0" y="120.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpPowerupDelay default_text="PowerupDelay" type="javax.baja.ui.BLabel" x="10.0" y="150.0" w="80.0" h="20.0"/>
|
||||
<tf_ModOpPowerupDelay default_text="0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="120.0" y="150.0" w="100.0" h="20.0"/>
|
||||
<lb_ModOpPowerupDelayUnit default_text="s" type="javax.baja.ui.BLabel" x="225.0" y="150.0" w="50.0" h="20.0"/>
|
||||
</bpe_FloatingMotorConfig>
|
||||
<lb_FloatingSyncNote default_text="Sync Edge Trigger functionality: <=0 - No Effect 1 - Sync Closed 2 - Sync Open >=3 - No Effect "
|
||||
type="javax.baja.ui.BLabel" x="300.0" y="222.0" w="250.0" h="200.0"/>
|
||||
<bpe_MotorAction default_text="MotorAction" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="300.0" y="200.0" w="120.0" h="80.0">
|
||||
<rb_MotorDirect default_text="Direct" type="javax.baja.ui.BRadioButton" x="10.0" y="20.0" w="100.0" h="20.0"/>
|
||||
<rb_MotorReverse default_text="Reverse" type="javax.baja.ui.BRadioButton" x="10.0" y="50.0" w="100.0" h="20.0"/>
|
||||
</bpe_MotorAction>
|
||||
|
||||
<bb_ModulatingOpHelp default_text="Help" type="javax.baja.ui.BButton" x="20.0" y="385.0" w="60.0" h="20.0"/>
|
||||
<bb_ModulatingOpAdvanced default_text="Advanced" type="javax.baja.ui.BButton" x="90.0" y="385.0" w="100.0" h="20.0"/>
|
||||
<bb_ModulatingOpOk default_text="OK" type="javax.baja.ui.BButton" x="390.0" y="385.0" w="60.0" h="20.0"/>
|
||||
|
||||
<bb_ModulatingOpCancel default_text="Cancel" type="javax.baja.ui.BButton" x="460.0" y="385.0" w="60.0" h="20.0"/>
|
||||
</bw_ModulatingOutput>
|
||||
</panes>
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.honeywell.honeywellXL10NextGen.job;
|
||||
|
||||
public interface ICancelableJob {
|
||||
boolean isJobCanceled();
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
<panes version="1">
|
||||
<advance_option_dialog default_text="Advance options" type="javax.baja.ui.BWidget" x="200.0" y="200.0" w="400.0" h="200">
|
||||
<lb_parent_lib_path default_text="Parent Folder path" type="javax.baja.ui.BLabel" x="20.0" y="27.0" w="100.0" h="30.0"/>
|
||||
<tf_parent_folder_path default_text="C:\Niagara\" type="javax.baja.ui.BTextField" x="120.0" y="30.0" w="220.0" h="32.0"/>
|
||||
<bt_browse_patent_lib default_text="..." type="javax.baja.ui.BButton" x="345.0" y="30.0" w="17.0" h="18.0"/>
|
||||
<cb_save_as_default default_text="Save as default parent path" type="javax.baja.ui.BCheckBox" x="120.0" y="70.0" w="180.0" h="30.0"/>
|
||||
<bt_ok default_text="OK" type="javax.baja.ui.BButton" x="252.0" y="110.0" w="50.0" h="23.0"/>
|
||||
<bt_cancel default_text="Cancel" type="javax.baja.ui.BButton" x="312.0" y="110.0" w="50.0" h="23.0"/>
|
||||
<bt_help default_text="Help" type="javax.baja.ui.BButton" x="20.0" y="110.0" w="50.0" h="23.0"/>
|
||||
</advance_option_dialog>
|
||||
</panes>
|
||||
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<panes version="1">
|
||||
<export_lib_item default_text="export_lib_item" type="javax.baja.ui.BWidget" x="200.0" y="200.0" w="390.0" h="400.0">
|
||||
<lb_instruction default_text="Select item(s) to export" type="javax.baja.ui.BLabel" x="30.0" y="20.0" w="270.0" h="30.0"/>
|
||||
<lt_lib_item default_text="Library Items" type="javax.baja.ui.list.BCheckList" x="30.0" y="50.0" w="200.0" h="160.0"/>
|
||||
|
||||
<lb_file_path default_text="File Path" type="javax.baja.ui.BLabel" x="30.0" y="225.0" w="70.0" h="30.0"/>
|
||||
<tf_file_path default_text="" type="javax.baja.ui.BTextField" x="80.0" y="227.0" w="230.0" h="30.0"/>
|
||||
<bt_browse default_text="..." type="javax.baja.ui.BButton" x="315.0" y="227.0" w="18.0" h="18.0"/>
|
||||
|
||||
<lb_version default_text="Version" type="javax.baja.ui.BLabel" x="30.0" y="257.0" w="70.0" h="20.0"/>
|
||||
<tf_version default_text="" type="javax.baja.ui.BTextField" x="80.0" y="260.0" w="40.0" h="20.0"/>
|
||||
|
||||
<lb_note default_text="* Only selected item(s) in the list shall be exported to the selected file." type="javax.baja.ui.BLabel" x="30.0" y="290.0" w="370.0" h="20.0"/>
|
||||
|
||||
<bt_ok default_text="OK" type="javax.baja.ui.BButton" x="225.0" y="330.0" w="50.0" h="23.0"/>
|
||||
<bt_cancel default_text="Cancel" type="javax.baja.ui.BButton" x="285.0" y="330.0" w="50.0" h="23.0"/>
|
||||
<bt_help default_text="Help" type="javax.baja.ui.BButton" x="30.0" y="330.0" w="50.0" h="23.0"/>
|
||||
</export_lib_item>
|
||||
</panes>
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.honeywell.honeywellXL10NextGen.library;
|
||||
|
||||
public interface IAdvancedHandler {
|
||||
boolean handleAdvanced(BAdvancedDialog bAdvancedDialog);
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<panes version="1">
|
||||
<load_lib_item default_text="SaveLibItem" type="javax.baja.ui.BWidget" x="200.0" y="200.0" w="436.0" h="488">
|
||||
|
||||
<lb_library_name default_text="Select Library" type="javax.baja.ui.BLabel" x="20.0" y="66.0" w="80.0" h="20.0"/>
|
||||
<ldd_library_name default_text="AppLib" type="javax.baja.ui.BListDropDown" x="120.0" y="66.0" w="170.0" h="20.0"/>
|
||||
|
||||
<lb_parent_folder_path default_text="Parent Folder Path" type="javax.baja.ui.BLabel" x="20.0" y="21.0" w="90.0" h="20.0"/>
|
||||
<tf_parent_folder_path default_text="C:\Niagara\" type="javax.baja.ui.BTextField" x="120.0" y="21.0" w="240.0" h="20.0"/>
|
||||
<bt_browse_patent_lib default_text="Browse" type="javax.baja.ui.BButton" x="364.0" y="21.0" w="50.0" h="20.0"/>
|
||||
<cb_save_as_default default_text="Save as default parent path" type="javax.baja.ui.BCheckBox" x="120.0" y="45.0" w="180.0" h="15.0"/>
|
||||
|
||||
<!--<tf_library_path default_text="Library Path" type="javax.baja.ui.BTextField" x="100.0" y="20.0" w="230.0" h="30.0"/> -->
|
||||
<bt_browse_lib default_text="..." type="javax.baja.ui.BButton" x="338.0" y="60.0" w="17.0" h="18.0"/>
|
||||
|
||||
<lb_application default_text="Application/Macro" type="javax.baja.ui.BLabel" x="20.0" y="96.0" w="90.0" h="20.0"/>
|
||||
<ldd_application default_text="App" type="javax.baja.ui.BListDropDown" x="120.0" y="96.0" w="170.0" h="20.0"/>
|
||||
|
||||
<bpe_app_details default_text="Application Details" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="20.0" y="130.0" w="390.0" h="280.0">
|
||||
<lb_name default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="20.0" w="90.0" h="20.0"/>
|
||||
<tf_name default_text="Name" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="100.0" y="20.0" w="170.0" h="20.0"/>
|
||||
<lb_type default_text="Type" type="javax.baja.ui.BLabel" x="20.0" y="50.0" w="90.0" h="20.0"/>
|
||||
<edd_type default_text="Type" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="100.0" y="50.0" w="130.0" h="20.0"/>
|
||||
<lb_version default_text="Version" type="javax.baja.ui.BLabel" x="20.0" y="80.0" w="90.0" h="20.0"/>
|
||||
<ldd_version default_text="Version" type="javax.baja.ui.BListDropDown" x="100.0" y="80.0" w="50.0" h="20.0"/>
|
||||
<lb_description default_text="Description" type="javax.baja.ui.BLabel" x="20.0" y="110.0" w="90.0" h="20.0"/>
|
||||
<ta_description default_text="Description" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BLimitTextEditorPane" x="100.0" y="110.0" w="270.0" h="70.0"/>
|
||||
|
||||
<lb_attachment default_text="Attachment" type="javax.baja.ui.BLabel" x="20.0" y="195.0" w="90.0" h="20.0"/>
|
||||
<tf_attachment default_text="Attachment" type="javax.baja.ui.BTextField" x="100.0" y="195.0" w="170.0" h="20.0"/>
|
||||
<bt_browse default_text="..." type="javax.baja.ui.BButton" x="275.0" y="195.0" w="17.0" h="18.0"/>
|
||||
<lt_attachments default_text="Attachments" type="javax.baja.ui.list.BList" x="100.0" y="195.0" w="270.0" h="70.0"/>
|
||||
</bpe_app_details>
|
||||
|
||||
<bt_ok default_text="OK" type="javax.baja.ui.BButton" x="300.0" y="425.0" w="50.0" h="20.0"/>
|
||||
<bt_cancel default_text="Cancel" type="javax.baja.ui.BButton" x="360.0" y="425.0" w="50.0" h="20.0"/>
|
||||
<bt_help default_text="Help" type="javax.baja.ui.BButton" x="20.0" y="425.0" w="50.0" h="20.0"/>
|
||||
</load_lib_item>
|
||||
</panes>
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
<panes version="1">
|
||||
<save_lib_item default_text="SaveLibItem" type="javax.baja.ui.BWidget" x="200.0" y="500.0" w="437.0" h="575">
|
||||
|
||||
<lb_library_name default_text="Select Library" type="javax.baja.ui.BLabel" x="20.0" y="66.0" w="80.0" h="20.0"/>
|
||||
<ldd_library_name default_text="AppLib" type="javax.baja.ui.BListDropDown" x="120.0" y="66.0" w="170.0" h="20.0"/>
|
||||
<bt_new_library default_text="+" type="javax.baja.ui.BButton" x="295.0" y="67.0" w="18.0" h="16.0"/>
|
||||
|
||||
<lb_parent_folder_path default_text="Parent Folder Path" type="javax.baja.ui.BLabel" x="20.0" y="20.0" w="90.0" h="20.0"/>
|
||||
<tf_parent_folder_path default_text="C:\Niagara\" type="javax.baja.ui.BTextField" x="120.0" y="22.0" w="240.0" h="20.0"/>
|
||||
<bt_browse_patent_lib default_text="Browse" type="javax.baja.ui.BButton" x="364.0" y="22.0" w="50.0" h="20.0"/>
|
||||
|
||||
<cb_save_as_default default_text="Save as default parent path" type="javax.baja.ui.BCheckBox" x="120.0" y="45.0" w="180.0" h="15.0"/>
|
||||
<!--<tf_library_path default_text="Library Path" type="javax.baja.ui.BTextField" x="100.0" y="20.0" w="230.0" h="30.0"/> -->
|
||||
<bt_browse_lib default_text="..." type="javax.baja.ui.BButton" x="368.0" y="60.0" w="17.0" h="18.0"/>
|
||||
|
||||
<rb_new_version default_text="Overwrite App (new version)" type="javax.baja.ui.BRadioButton" x="20.0" y="100.0" w="225.0" h="20.0"/>
|
||||
<rb_new_item default_text="Save as new app" type="javax.baja.ui.BRadioButton" x="250.0" y="100.0" w="160.0" h="20.0"/>
|
||||
|
||||
<bpe_app_details default_text="Application Details" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="20.0" y="130.0" w="390.0" h="373.0">
|
||||
<lb_name default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="20.0" w="90.0" h="20.0"/>
|
||||
<tf_name default_text="Name" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="100.0" y="20.0" w="170.0" h="20.0"/>
|
||||
<lb_type default_text="Type" type="javax.baja.ui.BLabel" x="20.0" y="50.0" w="90.0" h="20.0"/>
|
||||
<edd_type default_text="Type" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="100.0" y="50.0" w="130.0" h="20.0"/>
|
||||
<lb_features default_text="Features" type="javax.baja.ui.BLabel" x="20.0" y="82.0" w="90.0" h="20.0"/>
|
||||
<pane_features default_text="Features" type="javax.baja.ui.list.BCheckList" x="100.0" y="82.0" w="270.0" h="70.0"/>
|
||||
<lb_version default_text="Version" type="javax.baja.ui.BLabel" x="20.0" y="165.0" w="90.0" h="20.0"/>
|
||||
<tf_version default_text="Version" type="javax.baja.ui.BTextField" x="100.0" y="165.0" w="50.0" h="20.0"/>
|
||||
<lb_description default_text="Description" type="javax.baja.ui.BLabel" x="20.0" y="195.0" w="90.0" h="20.0"/>
|
||||
<ta_description default_text="Description" type="javax.baja.ui.pane.BTextEditorPane" x="100.0" y="195.0" w="270.0" h="70.0"/>
|
||||
|
||||
<lb_attachment default_text="Attachment" type="javax.baja.ui.BLabel" x="20.0" y="275.0" w="90.0" h="20.0"/>
|
||||
<tf_attachment default_text="Attachment" type="javax.baja.ui.BTextField" x="100.0" y="275.0" w="170.0" h="20.0"/>
|
||||
<bt_browse default_text="..." type="javax.baja.ui.BButton" x="275.0" y="195.0" w="17.0" h="18.0"/>
|
||||
<bt_add default_text="Add" type="javax.baja.ui.BButton" x="250.0" y="340.0" w="55.0" h="20.0"/>
|
||||
<lt_attachments default_text="Attachments" type="javax.baja.ui.list.BList" x="100.0" y="275.0" w="270.0" h="53.0"/>
|
||||
<bt_remove default_text="Remove" type="javax.baja.ui.BButton" x="315.0" y="340.0" w="55.0" h="20.0"/>
|
||||
</bpe_app_details>
|
||||
|
||||
<bt_ok default_text="OK" type="javax.baja.ui.BButton" x="300.0" y="513.0" w="50.0" h="20.0"/>
|
||||
<bt_cancel default_text="Cancel" type="javax.baja.ui.BButton" x="360.0" y="513.0" w="50.0" h="20.0"/>
|
||||
<bt_help default_text="Help" type="javax.baja.ui.BButton" x="20.0" y="513.0" w="50.0" h="20.0"/>
|
||||
</save_lib_item>
|
||||
</panes>
|
||||
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
<panes version="1">
|
||||
<save_lib_item default_text="SaveLibItem" type="javax.baja.ui.BWidget" x="200.0" y="200.0" w="520.0" h="520">
|
||||
|
||||
<lb_library_name default_text="Library Name" type="javax.baja.ui.BLabel" x="50.0" y="17.0" w="80.0" h="30.0"/>
|
||||
<ldd_library_name default_text="AppLib" type="javax.baja.ui.BListDropDown" x="150.0" y="20.0" w="170.0" h="22.0"/>
|
||||
<bt_new_library default_text="+" type="javax.baja.ui.BButton" x="325.0" y="22.0" w="18.0" h="16.0"/>
|
||||
|
||||
<lb_parent_folder_path default_text="Parent Folder Path" type="javax.baja.ui.BLabel" x="50.0" y="57.0" w="90.0" h="30.0"/>
|
||||
<tf_parent_folder_path default_text="C:\Niagara\" type="javax.baja.ui.BTextField" x="150.0" y="60.0" w="280.0" h="32.0"/>
|
||||
|
||||
<!--<tf_library_path default_text="Library Path" type="javax.baja.ui.BTextField" x="100.0" y="20.0" w="230.0" h="30.0"/> -->
|
||||
<bt_browse_lib default_text="..." type="javax.baja.ui.BButton" x="368.0" y="60.0" w="17.0" h="18.0"/>
|
||||
|
||||
<rb_new_version default_text="Overwrite App (new version)" type="javax.baja.ui.BRadioButton" x="50.0" y="100.0" w="180.0" h="30.0"/>
|
||||
<rb_new_item default_text="Save as new app" type="javax.baja.ui.BRadioButton" x="230.0" y="100.0" w="150.0" h="30.0"/>
|
||||
|
||||
<bpe_app_details default_text="Application Details" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BBorderPaneEx" x="50.0" y="140.0" w="390.0" h="280.0">
|
||||
<lb_name default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="17.0" w="90.0" h="30.0"/>
|
||||
<tf_name default_text="Name" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="100.0" y="20.0" w="170.0" h="30.0"/>
|
||||
<!--<lb_type default_text="Type" type="javax.baja.ui.BLabel" x="20.0" y="47.0" w="90.0" h="30.0"/>
|
||||
<edd_type default_text="Type" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="100.0" y="50.0" w="130.0" h="22.0"/>-->
|
||||
<lb_version default_text="Version" type="javax.baja.ui.BLabel" x="20.0" y="47.0" w="90.0" h="30.0"/>
|
||||
<tf_version default_text="Version" type="javax.baja.ui.BTextField" x="100.0" y="50.0" w="50.0" h="30.0"/>
|
||||
<lb_description default_text="Description" type="javax.baja.ui.BLabel" x="20.0" y="77.0" w="90.0" h="30.0"/>
|
||||
<ta_description default_text="Description" type="javax.baja.ui.pane.BTextEditorPane" x="100.0" y="80.0" w="270.0" h="70.0"/>
|
||||
|
||||
<lb_attachment default_text="Attachment" type="javax.baja.ui.BLabel" x="20.0" y="162.0" w="90.0" h="30.0"/>
|
||||
<tf_attachment default_text="Attachment" type="javax.baja.ui.BTextField" x="100.0" y="165.0" w="170.0" h="30.0"/>
|
||||
<bt_browse default_text="..." type="javax.baja.ui.BButton" x="275.0" y="165.0" w="17.0" h="18.0"/>
|
||||
<lt_attachments default_text="Attachments" type="javax.baja.ui.list.BList" x="100.0" y="165.0" w="270.0" h="53.0"/>
|
||||
<bt_add default_text="Add" type="javax.baja.ui.BButton" x="250.0" y="220.0" w="55.0" h="20.0"/>
|
||||
<bt_remove default_text="Remove" type="javax.baja.ui.BButton" x="315.0" y="220.0" w="55.0" h="20.0"/>
|
||||
</bpe_app_details>
|
||||
|
||||
<bt_ok default_text="OK" type="javax.baja.ui.BButton" x="330.0" y="440.0" w="50.0" h="23.0"/>
|
||||
<bt_cancel default_text="Cancel" type="javax.baja.ui.BButton" x="390.0" y="440.0" w="50.0" h="23.0"/>
|
||||
<bt_help default_text="Help" type="javax.baja.ui.BButton" x="50.0" y="440.0" w="50.0" h="23.0"/>
|
||||
<bt_advanced default_text="Advanced Settings" type="javax.baja.ui.BButton" x="110.0" y="440.0" w="115.0" h="23.0"/>
|
||||
</save_lib_item>
|
||||
</panes>
|
||||
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module
|
||||
name = "StandardApps"
|
||||
bajaVersion = "0"
|
||||
vendor = ""
|
||||
vendorVersion = "3.1.15"
|
||||
description = ""
|
||||
preferredSymbol = ""
|
||||
buildDate = "19-Dec-06 22:16 GMT+05:30"
|
||||
buildMillis = "1166546763187"
|
||||
buildHost = "ie10dtxpc00124"
|
||||
>
|
||||
</module>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.honeywell.honeywellXL10NextGen.networkInterface;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
||||
import javax.baja.sys.BIcon;
|
||||
import javax.baja.sys.Context;
|
||||
import javax.baja.sys.Property;
|
||||
|
||||
public interface INetworkObject {
|
||||
boolean getBObjectModified();
|
||||
|
||||
String getContainerString();
|
||||
|
||||
String getDisplayName(Context context);
|
||||
|
||||
BIOPointInterface getField(String str);
|
||||
|
||||
double getFieldValue(String str);
|
||||
|
||||
Property[] getFields();
|
||||
|
||||
BIcon getIcon();
|
||||
|
||||
String getObjectCategory();
|
||||
|
||||
String getStructName();
|
||||
|
||||
void setBObjectModified(boolean z);
|
||||
|
||||
void setObjectCategory(String str);
|
||||
|
||||
void setStructName(String str);
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package com.honeywell.honeywellXL10NextGen.networkInterface.manager;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIMacro;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BEnumUtil;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BXL10NextGenPointType;
|
||||
import javax.baja.sys.BComponent;
|
||||
|
||||
public interface INetworkObjectConfgBeanHandler {
|
||||
BComponent getActualBean(BIMacro bIMacro, BIOPointInterface bIOPointInterface, BComponent bComponent);
|
||||
|
||||
BIOPointInterface getObjectConfiguration(BIMacro bIMacro, BXL10NextGenPointType bXL10NextGenPointType, BIOPointInterface bIOPointInterface);
|
||||
|
||||
BIOPointInterface getObjectConfiguration(BIMacro bIMacro, BXL10NextGenPointType bXL10NextGenPointType, String str, String str2, BEnumUtil bEnumUtil, BIOPointInterface bIOPointInterface);
|
||||
|
||||
boolean isInternalUnitOfTypeMSV(BIOPointInterface bIOPointInterface, String str);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.honeywellXL10NextGen.points;
|
||||
|
||||
public interface IBITerminal {
|
||||
int getInputType();
|
||||
|
||||
void setInputType(int i);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.points;
|
||||
|
||||
public interface IBOTerminal {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.honeywell.honeywellXL10NextGen.points;
|
||||
|
||||
public interface IMITerminal {
|
||||
String getSensorName();
|
||||
|
||||
String getUnitName();
|
||||
|
||||
void setSensorName(String str);
|
||||
|
||||
void setUnitName(String str);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.honeywell.honeywellXL10NextGen.points;
|
||||
|
||||
public interface IMOTerminal {
|
||||
int getOutputType();
|
||||
|
||||
int getTerminal2();
|
||||
|
||||
void setOutputType(int i);
|
||||
|
||||
void setTerminal2(int i);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.points.ui;
|
||||
|
||||
final class c {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.honeywell.honeywellXL10NextGen.sylk.fw;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.compilation.BSpyderIICompilation;
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.device.BSylkIODevice;
|
||||
import javax.baja.xml.XElem;
|
||||
|
||||
public interface ISpyderSylkDeviceCompiler {
|
||||
BSylkDeviceStore compileSylkDevice(BSpyderIICompilation bSpyderIICompilation, BSylkIODevice bSylkIODevice, XElem xElem, int i) throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.sylkio.compiler;
|
||||
|
||||
final class a {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.honeywellXL10NextGen.util;
|
||||
|
||||
final class a {
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
package com.honeywell.honeywellXL10NextGen.util.commUtil;
|
||||
|
||||
public interface IEndianInputStream {
|
||||
int position();
|
||||
|
||||
int readBit(int i, int i2, int i3);
|
||||
|
||||
boolean readBoolean();
|
||||
|
||||
boolean readBooleanBit(int i, int i2, int i3);
|
||||
|
||||
byte[] readByteArray();
|
||||
|
||||
byte[] readByteArray(int i);
|
||||
|
||||
String readCharArray(int i);
|
||||
|
||||
double readDouble();
|
||||
|
||||
float readFloat();
|
||||
|
||||
int readSigned16();
|
||||
|
||||
int readSigned32();
|
||||
|
||||
int readSigned8();
|
||||
|
||||
int readSignedBit(int i, int i2, int i3);
|
||||
|
||||
String readString();
|
||||
|
||||
int readUnsigned16();
|
||||
|
||||
long readUnsigned32();
|
||||
|
||||
int readUnsigned8();
|
||||
|
||||
void reset();
|
||||
|
||||
void reset(int i);
|
||||
|
||||
void resetBitFieldMark(int i);
|
||||
|
||||
int setBitFieldMark();
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.honeywell.honeywellXL10NextGen.util.commUtil;
|
||||
|
||||
public interface IEndianOutputStream {
|
||||
void resetBitFieldMark(int i);
|
||||
|
||||
int setBitFieldMark();
|
||||
|
||||
void writeBit(int i, int i2, int i3, int i4);
|
||||
|
||||
void writeBoolean(boolean z);
|
||||
|
||||
void writeBooleanBit(boolean z, int i, int i2, int i3);
|
||||
|
||||
void writeByteArray(byte[] bArr, int i);
|
||||
|
||||
void writeCharArray(String str, int i);
|
||||
|
||||
void writeFloat(float f);
|
||||
|
||||
void writeSigned16(int i);
|
||||
|
||||
void writeSigned32(int i);
|
||||
|
||||
void writeSigned8(int i);
|
||||
|
||||
void writeSignedBit(int i, int i2, int i3, int i4);
|
||||
|
||||
void writeUnsigned16(int i);
|
||||
|
||||
void writeUnsigned32(long j);
|
||||
|
||||
void writeUnsigned8(int i);
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller;
|
||||
|
||||
public interface IChecksumCRCGenerator {
|
||||
char calculateCRCChecksum(byte[] bArr, int i);
|
||||
|
||||
void computeCRCChecksum();
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.BHoneywellComponent;
|
||||
|
||||
public interface IFunctionBlockConfig {
|
||||
short getConfig1(BHoneywellComponent bHoneywellComponent);
|
||||
|
||||
short getConfig2(BHoneywellComponent bHoneywellComponent);
|
||||
|
||||
short getConfig3(BHoneywellComponent bHoneywellComponent);
|
||||
|
||||
void setConfig1(BHoneywellComponent bHoneywellComponent, byte b);
|
||||
|
||||
void setConfig2(BHoneywellComponent bHoneywellComponent, byte b);
|
||||
|
||||
void setConfig3(BHoneywellComponent bHoneywellComponent, byte b);
|
||||
}
|
||||
@@ -0,0 +1,171 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller;
|
||||
|
||||
public interface IMandatoryXIF {
|
||||
int applicationInputBuffersSize();
|
||||
|
||||
int applicationOutputBuffersSize();
|
||||
|
||||
int applicationType(int i);
|
||||
|
||||
int doesDeviceOverridesGeneralPurposeDataForSpecialPurposeData();
|
||||
|
||||
int doesRawDataOverridesTimingValues();
|
||||
|
||||
int getAddressTableEntrySize();
|
||||
|
||||
int getAveragePacketSize();
|
||||
|
||||
String getBaseClockRateFactor(int i);
|
||||
|
||||
int getChannelBitRate();
|
||||
|
||||
int getDomainTableEntrySize();
|
||||
|
||||
String[] getFileData(int i);
|
||||
|
||||
int getFileIndex(int i);
|
||||
|
||||
String getFileName(int i);
|
||||
|
||||
int getFileType(int i);
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_1();
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_2(int i);
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_3();
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_4();
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_5();
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_6();
|
||||
|
||||
int getGeneralPurposeDataUsedForSpecialPurpose_7();
|
||||
|
||||
int getInterminateTime();
|
||||
|
||||
String[] getMandatoryXIFHeader(int i, int i2);
|
||||
|
||||
int getMandatoryXIFHeaderLines();
|
||||
|
||||
int getMinimumClockRateForChannel();
|
||||
|
||||
int getMinimumInterpacketTime();
|
||||
|
||||
int getMissedPreambleTime();
|
||||
|
||||
String[] getMsgTagData(int i);
|
||||
|
||||
String[] getMsgTagHeader(int i);
|
||||
|
||||
int getNVAliasTableEntrySize();
|
||||
|
||||
int getNVConfigurationTableEntrySize();
|
||||
|
||||
int getNumberOfAddressTableEnteries();
|
||||
|
||||
int getNumberOfBytesFromDomainAreaToEEPROM(int i);
|
||||
|
||||
int getNumberOfDomain();
|
||||
|
||||
int getNumberOfFileSection();
|
||||
|
||||
int getNumberOfLinesPerFile(int i);
|
||||
|
||||
int getNumberOfPrioritySlotOnChannel();
|
||||
|
||||
int getOffChipRamConfiguration();
|
||||
|
||||
int getOnChipRamConfiguration(int i);
|
||||
|
||||
int getPacketQualificationTime();
|
||||
|
||||
int getPreambleLength();
|
||||
|
||||
int getProtocolProcessorClockRate();
|
||||
|
||||
int getProtocolProcessorModel();
|
||||
|
||||
int getProtocolProcessorOscillatorAccuracy();
|
||||
|
||||
int getProtocolProcessorOscillatorWakeUpTime();
|
||||
|
||||
int getRawDataBytesForCommunicationParameter_1();
|
||||
|
||||
int getRawDataBytesForCommunicationParameter_2();
|
||||
|
||||
int getRawDataBytesForCommunicationParameter_3();
|
||||
|
||||
int getRawDataBytesForCommunicationParameter_4();
|
||||
|
||||
int getRawDataBytesForCommunicationParameter_5();
|
||||
|
||||
int getRawDataClockRate();
|
||||
|
||||
int getReceiveEndDelay();
|
||||
|
||||
int getReceiveStartDelay();
|
||||
|
||||
int getReceiveTransactionBlockSizeInBytes();
|
||||
|
||||
int getReservedValue();
|
||||
|
||||
String getSelfDocumentaryString(int i);
|
||||
|
||||
int getSpecialPurposeModeAlternateChannelBitRate();
|
||||
|
||||
int getSpecialPurposeModeWakeUpPinDirection();
|
||||
|
||||
int getStandardTransceiverTypeID();
|
||||
|
||||
int getSystemFirmwareRevisionNumber();
|
||||
|
||||
int getTransactionControlBlockSizeInBytes();
|
||||
|
||||
int getTransceiverInterfaceRate();
|
||||
|
||||
int getTransceiverInterfaceType();
|
||||
|
||||
int getTurnAroundTime();
|
||||
|
||||
int isIncomingApplicationMessagesHandled();
|
||||
|
||||
int isRelaxedBindingConstraintsAllowed();
|
||||
|
||||
int isSpecialPurposeModeTransceiverControlsThePreamble();
|
||||
|
||||
int isStandardTransceiverTypeUsed();
|
||||
|
||||
int isStatisticsRelativeAddressReferencesAllowed();
|
||||
|
||||
int maximumNumberOfNVSupportedByDevice();
|
||||
|
||||
int maximumSizeMemoryBlockThatCanBeWritten();
|
||||
|
||||
int networkInputBuffersSize();
|
||||
|
||||
int networkOutputBuffersSize();
|
||||
|
||||
int numberOfApplicationInputBuffers();
|
||||
|
||||
int numberOfApplicationOutputBuffers();
|
||||
|
||||
int numberOfMsgTag();
|
||||
|
||||
int numberOfNVAliasTableEnteries(int i);
|
||||
|
||||
int numberOfNetworkInputBuffers(int i);
|
||||
|
||||
int numberOfNetworkOutputBuffers();
|
||||
|
||||
int numberOfPriorityApplicationOutputBuffers();
|
||||
|
||||
int numberOfPriorityNetworkOutputBuffers();
|
||||
|
||||
int numberOfReceiveTransactionBuffer();
|
||||
|
||||
int numberOfStaticNV();
|
||||
|
||||
int sizeOfNVConfigurationTable();
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.BHoneywellComponent;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Map;
|
||||
import javax.baja.space.BComponentSpace;
|
||||
|
||||
public interface ISpyderLogger {
|
||||
void clearActionsMap();
|
||||
|
||||
Map getActionsTaken();
|
||||
|
||||
ArrayList getBlocksToFix(BComponentSpace bComponentSpace);
|
||||
|
||||
String getControllerModel();
|
||||
|
||||
String getDeviceModel();
|
||||
|
||||
String getDeviceName();
|
||||
|
||||
Map getDuplicateObjNames();
|
||||
|
||||
Map getErrors();
|
||||
|
||||
int getFirmwareModel();
|
||||
|
||||
Map getInvalidHWPoints();
|
||||
|
||||
Map getInvalidLinksKnobs();
|
||||
|
||||
Map getInvalidPoints();
|
||||
|
||||
int getNumberOfFixableBlocks();
|
||||
|
||||
Map getUnusedBlocks();
|
||||
|
||||
Map getWarnings();
|
||||
|
||||
void logAction(String str, String str2);
|
||||
|
||||
void logBlockToFix(BHoneywellComponent bHoneywellComponent);
|
||||
|
||||
void logError(String str, String str2);
|
||||
|
||||
void logInvalidHWPoint(String str, String str2);
|
||||
|
||||
void logInvalidPoint(String str, String str2);
|
||||
|
||||
void logUnusedBlock(String str, String str2);
|
||||
|
||||
void logWarning(String str, String str2);
|
||||
|
||||
void setControllerModel(String str);
|
||||
|
||||
void setDeviceModel(String str);
|
||||
|
||||
void setDeviceName(String str);
|
||||
|
||||
void setFirmwareModel(int i);
|
||||
}
|
||||
+69
@@ -0,0 +1,69 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.compilation;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.device.ISpyderDevice;
|
||||
import javax.baja.driver.BDevice;
|
||||
import javax.baja.job.BJob;
|
||||
|
||||
public interface ICompiler {
|
||||
public static final int ALARM_DISABLE = 9;
|
||||
public static final int ALARM_TYPE_CONFIG = 30;
|
||||
public static final int ANALOG_INPUT_CONFIG = 15;
|
||||
public static final int ANALOG_INPUT_LINEAR_CONFIG = 14;
|
||||
public static final int ANALOG_INPUT_MODE = 2;
|
||||
public static final int ANALOG_INPUT_OFFSET = 1;
|
||||
public static final int ANALOG_OUTPUT_CONFIG = 17;
|
||||
public static final int ANALOG_OUTPUT_MODE = 3;
|
||||
public static final int APP_GUID = 32;
|
||||
public static final int BACNET_BINDINGS = 35;
|
||||
public static final int BOAC_CONFIG = 36;
|
||||
public static final int CONTROL_CONSTANT = 13;
|
||||
public static final int CONTROL_LOOP = 12;
|
||||
public static final int CONTROL_NV_RAM = 0;
|
||||
public static final int CONTROL_VARIABLE = 25;
|
||||
public static final int DAY_LIGHT_SAVING = 4;
|
||||
public static final int DEVICE_NAME = 8;
|
||||
public static final int DIGITAL_INPUT_CONFIG = 16;
|
||||
public static final int DIGITAL_OUTPUT_CONFIG = 18;
|
||||
public static final int FLOATING_MOTOR_CONFIG = 19;
|
||||
public static final int HEART_BEAT = 7;
|
||||
public static final int HOLIDAY = 6;
|
||||
public static final int LOGICAL_INPUT_CONFIG = 40;
|
||||
public static final int LOGICAL_INPUT_MAP = 38;
|
||||
public static final int LOGICAL_OUTPUT_CONFIG = 41;
|
||||
public static final int LOGICAL_OUTPUT_MAP = 39;
|
||||
public static final int LON_APP_INIT_DATA = 34;
|
||||
public static final int LON_SI_DATA = 33;
|
||||
public static final int MAX_NUM_OF_STORES = 44;
|
||||
public static final int NV_CONFIG = 10;
|
||||
public static final int NV_PER_FIELD_CONFIG = 11;
|
||||
public static final int PROXY_FILE = 31;
|
||||
public static final int PUBLIC_VARIABLE_GROUP_CONFIG = 26;
|
||||
public static final int PUBLIC_VARIABLE_SEND_CONFIG = 27;
|
||||
public static final int REPLACEMENT_CONSTANT = 43;
|
||||
public static final int REPLACEMENT_SPEC = 42;
|
||||
public static final int SCALAR_DATATYPE_CONFIG = 21;
|
||||
public static final int SCHEDULE = 5;
|
||||
public static final int SCHEDULER_CONFIG = 23;
|
||||
public static final int STRUCTURED_CONFIG = 22;
|
||||
public static final int SV_CONFIG = 33;
|
||||
public static final int SV_MAP_ENTRY_CONFIG = 34;
|
||||
public static final int SYLK_COV = 37;
|
||||
public static final int UNIT_CONFIG = 20;
|
||||
public static final int WALLMODULE_CONFIG = 24;
|
||||
public static final int WM_BUS_DEVICE_ADDRESS = 28;
|
||||
public static final int WM_FAIL_DETECT_CONFIG = 29;
|
||||
|
||||
void cleanup();
|
||||
|
||||
void compile(BDevice bDevice, int i, boolean z) throws Exception;
|
||||
|
||||
void generateNetworkObjects(ISpyderDevice iSpyderDevice, int i) throws Exception;
|
||||
|
||||
INetworkCompilationInterface getNetworkCompiler();
|
||||
|
||||
void setFwModel(int i);
|
||||
|
||||
void setJob(BJob bJob);
|
||||
|
||||
void setNetworkCompiler(INetworkCompilationInterface iNetworkCompilationInterface);
|
||||
}
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.compilation;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.sylk.fw.ti.BSylkTIDevice;
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.datatypes.BFileOffsetStore;
|
||||
import java.util.List;
|
||||
import javax.baja.batchJob.BValueList;
|
||||
import javax.baja.control.BNumericPoint;
|
||||
import javax.baja.sys.BComponent;
|
||||
import javax.baja.sys.Context;
|
||||
import javax.baja.sys.Knob;
|
||||
|
||||
public interface INetworkCompilationInterface {
|
||||
int compileFileOffsetsForNetworkInterfaceData(int i, BFileOffsetStore bFileOffsetStore, BComponent bComponent);
|
||||
|
||||
int compileFileOffsetsForNetworkObjects(int i, BFileOffsetStore bFileOffsetStore, BComponent bComponent);
|
||||
|
||||
boolean compileNetworkInputs();
|
||||
|
||||
void compileNetworkInputsForOD(BCompilation bCompilation);
|
||||
|
||||
boolean compileNetworkOutputs();
|
||||
|
||||
void compileNetworkOutputsForOD();
|
||||
|
||||
boolean compilePriorityOverrideBlock(BComponent bComponent, boolean z);
|
||||
|
||||
void freeResources();
|
||||
|
||||
void generateConfigBinaries(ISpyderCompile iSpyderCompile, BValueList bValueList, boolean z);
|
||||
|
||||
boolean generateNetworkObjects(BCompilation bCompilation, int i);
|
||||
|
||||
void generateParamBinaries(ISpyderCompile iSpyderCompile, BValueList bValueList, boolean z);
|
||||
|
||||
void generateSylkTIPvids(BSylkTIDevice bSylkTIDevice) throws Exception;
|
||||
|
||||
boolean generateTempSetPointPvid();
|
||||
|
||||
List getErrorLogs();
|
||||
|
||||
int getFieldDescriptorStoreLength();
|
||||
|
||||
byte[] getGUIDByteArray(ISpyderCompile iSpyderCompile, String str);
|
||||
|
||||
boolean initialize() throws Exception;
|
||||
|
||||
boolean isEntryToNVRamStoreRequired(Knob[] knobArr, BNumericPoint bNumericPoint);
|
||||
|
||||
void logError(String str);
|
||||
|
||||
boolean postCompile(Context context);
|
||||
|
||||
boolean preCompile(BCompilation bCompilation);
|
||||
|
||||
void setMainCompiler(ICompiler iCompiler);
|
||||
|
||||
void writeToDebugFile();
|
||||
}
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.compilation;
|
||||
|
||||
import javax.baja.job.BJob;
|
||||
import javax.baja.naming.BOrd;
|
||||
import javax.baja.sys.BBoolean;
|
||||
import javax.baja.util.BBitSet;
|
||||
|
||||
public interface ISpyderCompile {
|
||||
void beginCompile(BJob bJob, int i, boolean z) throws Exception;
|
||||
|
||||
BOrd compile(BBoolean bBoolean);
|
||||
|
||||
BBitSet getBinaryModified();
|
||||
|
||||
int getCompileStatusFlag();
|
||||
|
||||
BSpyderCompileUtility getSpyderCompileUtility();
|
||||
|
||||
ICompiler getSpyderCompiler();
|
||||
|
||||
int getTimeForUnconfiguredScheduleEvent();
|
||||
|
||||
boolean isCompileRequired();
|
||||
|
||||
void setBinaryModified(BBitSet bBitSet);
|
||||
|
||||
void setCompileStatusFlag(int i);
|
||||
|
||||
void setSpyderCompiler(ICompiler iCompiler);
|
||||
}
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.controllerInfo;
|
||||
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface IControllerSpecificInfo {
|
||||
boolean checkComponentSupport(String str, String str2);
|
||||
|
||||
Type getDeviceClassType();
|
||||
|
||||
int getEnumCount(String str);
|
||||
|
||||
String getEnumDetail(String str, int i, String str2);
|
||||
|
||||
String getFBClassDetails(String str, String str2, String str3);
|
||||
|
||||
String getFBDetails(String str, String str2);
|
||||
|
||||
String getFBID(String str, String str2, boolean z, String str3);
|
||||
|
||||
String getFBNameFromIndex(int i);
|
||||
|
||||
String getFBNameFromIndex(String str, String str2, int i);
|
||||
|
||||
int getFBPropertiesCount(String str, String str2);
|
||||
|
||||
boolean getFbSupported(String str, String str2);
|
||||
|
||||
String getFb_xml();
|
||||
|
||||
String getPropDescription(String str, String str2, int i);
|
||||
|
||||
String getPropFacets(String str, String str2, String str3, String str4);
|
||||
|
||||
String getUploadClass(String str, String str2, String str3);
|
||||
|
||||
void setFB_XMLFile(String str);
|
||||
}
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.datatypes;
|
||||
|
||||
public interface IDefinitions {
|
||||
public static final int BYTES_IN_AI_CONFIG = 42;
|
||||
public static final int BYTES_IN_AI_LIN_CONFIG = 402;
|
||||
public static final int BYTES_IN_AO_CONFIG = 14;
|
||||
public static final int BYTES_IN_CONTROL_CONSTANT = 226;
|
||||
public static final int BYTES_IN_CONTROL_LOOP = 1322;
|
||||
public static final int BYTES_IN_CONTROL_NON_VOLATILE = 130;
|
||||
public static final int BYTES_IN_DI_CONFIG = 10;
|
||||
public static final int BYTES_IN_DO_CONFIG = 82;
|
||||
public static final int BYTES_IN_FLOATING_MOTOR_CONFIG = 58;
|
||||
public static final int BYTES_IN_LON_APP_INIT_DATA = 90;
|
||||
public static final int BYTES_IN_LON_SI_DATA = 1002;
|
||||
public static final int BYTES_IN_NV_CONFIG = 167;
|
||||
public static final int BYTES_IN_PER_FIELD_CONFIG = 352;
|
||||
public static final int BYTES_IN_SCALAR_DT_CONFIG = 182;
|
||||
public static final int BYTES_IN_SCHEDULER_CONFIG = 8;
|
||||
public static final int BYTES_IN_STRUCTURED_DT_CONFIG = 202;
|
||||
public static final int BYTES_IN_UNIT_CONFIG = 162;
|
||||
public static final int MAX_ANALOG_INPUT = 8;
|
||||
public static final int MAX_ANALOG_INPUT_LIN_POINTS = 40;
|
||||
public static final int MAX_ANALOG_OUTPUT = 3;
|
||||
public static final int MAX_CONFIGURABLE_SCALAR_DATA_TYPES = 30;
|
||||
public static final int MAX_CONFIGURABLE_UNITS = 30;
|
||||
public static final int MAX_CONTROL_CONSTANT = 256;
|
||||
public static final int MAX_CONTROL_LOOP = 100;
|
||||
public static final int MAX_CONTROL_NVRAM = 32;
|
||||
public static final int MAX_DIGITAL_INPUT = 4;
|
||||
public static final int MAX_DIGITAL_OUTPUT = 8;
|
||||
public static final int MAX_MAPPABLE_NV_FIELDS = 165;
|
||||
public static final int MAX_NUMBER_OF_NVS = 62;
|
||||
public static final int MAX_NV_CONFIG_FIELDS = 55;
|
||||
public static final int MAX_STRUCT_DATA_FIELDS = 100;
|
||||
public static final int MEMBER_INDEX_START = 18;
|
||||
public static final int NV_INDEX_START = 17;
|
||||
public static final int SCALAR_DATA_TYPE_START = 8;
|
||||
public static final int STRUCTURED_CONFIGURABLE_START = 157;
|
||||
public static final int STRUCTURED_FIXED_START = 149;
|
||||
public static final int STRUCTURED_MANDATORY_START = 128;
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.datatypes;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public interface ISpyderDatatype {
|
||||
public static final int CRC = 0;
|
||||
public static final int LENGTH = 1;
|
||||
|
||||
void clearData();
|
||||
|
||||
ArrayList getData();
|
||||
|
||||
Object getDataItem(int i);
|
||||
|
||||
void setCrc(float f);
|
||||
|
||||
void setLength(float f);
|
||||
}
|
||||
+75
@@ -0,0 +1,75 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.device;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.deviceModes.common.station.enums.BPiranhaModeEnum;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BInputPoint;
|
||||
import java.util.Map;
|
||||
import javax.baja.sys.BBoolean;
|
||||
import javax.baja.sys.BComponent;
|
||||
import javax.baja.sys.BInteger;
|
||||
import javax.baja.sys.BString;
|
||||
import javax.baja.sys.BVector;
|
||||
|
||||
public interface IOnlineNetworkInterfaceHandler {
|
||||
boolean checkAndSetDeviceInUse(float f);
|
||||
|
||||
BBoolean confirmOnlineDeviceIsSpyder(BInteger bInteger);
|
||||
|
||||
void disableProxies(BString bString);
|
||||
|
||||
void enableDisableAlarms();
|
||||
|
||||
void enableProxies(BString bString);
|
||||
|
||||
void forceRead(BComponent bComponent);
|
||||
|
||||
void forceWrite(BComponent bComponent);
|
||||
|
||||
BVector getApplVerDetails(BString bString);
|
||||
|
||||
double getDeviceHeartBeatTime();
|
||||
|
||||
String getFirmwareVersion();
|
||||
|
||||
BInteger getOnlineDeviceInstanceNumber();
|
||||
|
||||
String getPointsChanged();
|
||||
|
||||
int getRevisionNumberFromApplVer() throws Exception;
|
||||
|
||||
BString getToolVersion();
|
||||
|
||||
String getUnitDataTypeNameOfPoint(BInputPoint bInputPoint, BPiranhaModeEnum bPiranhaModeEnum);
|
||||
|
||||
boolean isDeviceInUseSet(float f);
|
||||
|
||||
void pingDevice();
|
||||
|
||||
String readControllerModelFromDevice();
|
||||
|
||||
int readDeviceBrand(String str) throws Exception;
|
||||
|
||||
String readEnumValueFromNVField(String str, String str2);
|
||||
|
||||
String readFromNVField(String str, String str2);
|
||||
|
||||
String readGUIDFromController();
|
||||
|
||||
void readToolVersion(String str) throws Exception;
|
||||
|
||||
void resetDeviceInUse();
|
||||
|
||||
void setDeviceInUse(float f);
|
||||
|
||||
void setFirmwareVersion(String str);
|
||||
|
||||
void setPointsChanged(String str);
|
||||
|
||||
void setToolVersion(BString bString);
|
||||
|
||||
void updateNCIField(BComponent bComponent, String str, BIOPointInterface bIOPointInterface, Map map);
|
||||
|
||||
void writeToNVField(String str, String str2, int i);
|
||||
|
||||
void writeToNVField(String str, String str2, String str3);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.device;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public interface ISpyderBoac {
|
||||
ArrayList formAllBacnetObjectsInSortedOrder();
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.device;
|
||||
|
||||
import javax.baja.sys.BInterface;
|
||||
import javax.baja.sys.BString;
|
||||
import javax.baja.util.Lexicon;
|
||||
|
||||
public interface ISpyderLicense extends BInterface {
|
||||
boolean brandModelExists(ISpyderLicense iSpyderLicense);
|
||||
|
||||
void doLicenseCheck(BString bString);
|
||||
|
||||
Lexicon getDeviceLexicon();
|
||||
|
||||
String[] getFeatureToCheck();
|
||||
|
||||
void licenseCheck(BString bString);
|
||||
|
||||
int readDeviceBrand(String str) throws Exception;
|
||||
|
||||
int readToolBrand();
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.download;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.device.ISpyderDevice;
|
||||
import javax.baja.batchJob.BValueList;
|
||||
|
||||
public interface IDeviceFileWriter {
|
||||
boolean download(ISpyderDevice iSpyderDevice, BValueList bValueList, boolean z);
|
||||
|
||||
void endDownload();
|
||||
|
||||
boolean quickDownload(ISpyderDevice iSpyderDevice, BValueList bValueList);
|
||||
}
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.download;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIApplication;
|
||||
import javax.baja.naming.BOrd;
|
||||
import javax.baja.sys.BBoolean;
|
||||
import javax.baja.sys.BInterface;
|
||||
|
||||
public interface ISpyderDownload extends BInterface {
|
||||
void beginSpyderDownload();
|
||||
|
||||
void checkAndAddRetryDownloadProp(Exception exception);
|
||||
|
||||
BBoolean checkDeviceState();
|
||||
|
||||
boolean checkGenerateNetObjFlagForDownload();
|
||||
|
||||
void checkModel(BIApplication bIApplication) throws Exception;
|
||||
|
||||
void checkSpyderDownload();
|
||||
|
||||
void endSpyderDownload();
|
||||
|
||||
void generateNetworkObject();
|
||||
|
||||
boolean getFirmwareCheckEnabled();
|
||||
|
||||
boolean getForceFullDownloadFlag();
|
||||
|
||||
boolean getFullDownloadFlag();
|
||||
|
||||
String getLastGUID();
|
||||
|
||||
boolean getQuickDownloadFlag();
|
||||
|
||||
boolean getUserOptionFullDownloadFlag();
|
||||
|
||||
boolean isCheckDownloadInvoked();
|
||||
|
||||
boolean isRetryDownload();
|
||||
|
||||
BBoolean performRevisionNumberCheck();
|
||||
|
||||
void removeRetryDownloadProp();
|
||||
|
||||
void setCheckDownloadInvoked(boolean z);
|
||||
|
||||
void setFirmwareCheckEnabled(boolean z);
|
||||
|
||||
void setForceFullDownloadFlag(boolean z);
|
||||
|
||||
void setFullDownloadFlag(boolean z);
|
||||
|
||||
void setLastGUID(String str);
|
||||
|
||||
void setQuickDownloadFlag(boolean z);
|
||||
|
||||
void setUserOptionFullDownloadFlag(boolean z);
|
||||
|
||||
BOrd spyderDownload(BSpyderDownloadParameters bSpyderDownloadParameters);
|
||||
|
||||
void updateNetworkConfigValues(boolean z);
|
||||
|
||||
void validateFirmware(String str);
|
||||
}
|
||||
+63
@@ -0,0 +1,63 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.manager;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.functionalBlocks.blocks.builtIn.BSchedule;
|
||||
import com.honeywell.honeywellXL10NextGen.networkInterface.INetworkObject;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
||||
import java.util.Map;
|
||||
import javax.baja.batchJob.BValueList;
|
||||
import javax.baja.sys.BBlob;
|
||||
import javax.baja.sys.BComponent;
|
||||
|
||||
public interface ISpyderDataManager {
|
||||
void clearAllBinaryInfo();
|
||||
|
||||
void clearCrcCorrectionProxyDataInfo();
|
||||
|
||||
void clearFullProxyDataInfo();
|
||||
|
||||
void clearOptimizedProxyDataInfo();
|
||||
|
||||
BComponent getAIOffsetContainer();
|
||||
|
||||
BValueList getCompiledData();
|
||||
|
||||
BComponent getCrcCorrectionProxyDataInfo();
|
||||
|
||||
BComponent getFullProxyDataInfo();
|
||||
|
||||
BComponent getOptimizedProxyDataInfo();
|
||||
|
||||
boolean isCompiledDataAvailable();
|
||||
|
||||
void removeAIOffsetList();
|
||||
|
||||
void removeNSList();
|
||||
|
||||
void storeCompiledData(BBlob[] bBlobArr);
|
||||
|
||||
boolean storeCompiledData(BValueList bValueList);
|
||||
|
||||
void updateAIOffsetBinaries(int i, float f);
|
||||
|
||||
void updateControlNvRamBinaries(Map map);
|
||||
|
||||
void updateCrcCorrectionProxyInfo(Map map);
|
||||
|
||||
void updateDLSBinaries();
|
||||
|
||||
void updateFullProxyDataInfo(Map map);
|
||||
|
||||
void updateNSOrAIOffsetList(BIOPointInterface bIOPointInterface, float f);
|
||||
|
||||
void updateNSOrAIOffsetList(BIOPointInterface bIOPointInterface, INetworkObject iNetworkObject, float f);
|
||||
|
||||
void updateOptimizedProxyDataInfo(Map map);
|
||||
|
||||
void updateParamBinariesDuringSyncFromFieldDevice(byte[] bArr, byte[] bArr2, byte[] bArr3);
|
||||
|
||||
void updateProxyFileData(byte[] bArr);
|
||||
|
||||
void updateScheduleBinaries(BSchedule bSchedule);
|
||||
|
||||
void writeSpyderBinariesToFile(BValueList bValueList) throws Exception;
|
||||
}
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
<panes version="1">
|
||||
<bw_SensorCalibration default_text="SensorCalibration" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="400.0" h="300">
|
||||
<lb_ModIpName default_text="List Of Sensors" type="javax.baja.ui.BLabel" x="30.0" y="25.0" w="80.0" h="20.0"/>
|
||||
<ldd_ModIpName default_text="ModulatingInput1" type="javax.baja.ui.BListDropDown" x="130.0" y="25.0" w="200.0" h="20.0"/>
|
||||
|
||||
<!--
|
||||
<lb_SensorType default_text="Sensor Type" type="javax.baja.ui.BLabel" x="30.0" y="60.0" w="80.0" h="20.0"/>
|
||||
<tf_SensorType default_text="KNTC20" type="javax.baja.ui.BTextField" x="130.0" y="60.0" w="120.0" h="20.0"/>
|
||||
-->
|
||||
<lb_ActualValue default_text="Actual Value" type="javax.baja.ui.BLabel" x="30.0" y="60.0" w="80.0" h="20.0"/>
|
||||
<tf_ActualValue default_text="0.0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="130.0" y="60.0" w="100.0" h="20.0"/>
|
||||
<lb_ActualValueUnit default_text="Deg.F" type="javax.baja.ui.BLabel" x="235.0" y="60.0" w="50.0" h="20.0"/>
|
||||
|
||||
<lb_EditValue default_text="Edit Value" type="javax.baja.ui.BLabel" x="30.0" y="95.0" w="80.0" h="20.0"/>
|
||||
<tf_EditValue default_text="0.0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="130.0" y="95.0" w="100.0" h="20.0"/>
|
||||
<lb_EditValueUnit default_text="Deg.F" type="javax.baja.ui.BLabel" x="235.0" y="95.0" w="50.0" h="20.0"/>
|
||||
|
||||
<lb_Offset default_text="Offset" type="javax.baja.ui.BLabel" x="30.0" y="130.0" w="80.0" h="20.0"/>
|
||||
<tf_Offset default_text="0.0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="130.0" y="130.0" w="100.0" h="20.0"/>
|
||||
<lb_OffsetUnit default_text="Deg.F" type="javax.baja.ui.BLabel" x="235.0" y="130.0" w="50.0" h="20.0"/>
|
||||
|
||||
<bb_SensorCalibrationHelp default_text="Help" type="javax.baja.ui.BButton" x="30.0" y="165.0" w="70.0" h="20.0"/>
|
||||
<bb_SensorCalibrationCalibrate default_text="Calibrate" type="javax.baja.ui.BButton" x="110.0" y="165.0" w="70.0" h="20.0"/>
|
||||
<bb_SensorCalibrationRefresh default_text="Refresh " type="javax.baja.ui.BButton" x="190.0" y="165.0" w="70.0" h="20.0"/>
|
||||
<bb_SensorCalibrationClose default_text=" Close " type="javax.baja.ui.BButton" x="270.0" y="165.0" w="70.0" h="20.0"/>
|
||||
<bb_SensorCalibrationWarning default_text=" " type="javax.baja.ui.BLabel" x="30.0" y="195.0" w="310.0" h="53.0"/>
|
||||
|
||||
</bw_SensorCalibration>
|
||||
</panes>
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.onlineOperation.flowBalancing;
|
||||
|
||||
import javax.baja.driver.BDevice;
|
||||
|
||||
public interface IFlowCalibrationPoints {
|
||||
void disableProxies();
|
||||
|
||||
void enableProxies();
|
||||
|
||||
String getAreaUnit();
|
||||
|
||||
String getErrorString();
|
||||
|
||||
String getFlowOverrideUnit();
|
||||
|
||||
String getFlowUnit();
|
||||
|
||||
String getPressureUnit();
|
||||
|
||||
float readBoxFlow();
|
||||
|
||||
float readBoxFlowControlPoint();
|
||||
|
||||
float readControllerFlow();
|
||||
|
||||
int readControllerMode();
|
||||
|
||||
float readDamperPosition();
|
||||
|
||||
float readDuctArea();
|
||||
|
||||
int readFlowCalibrationFlag();
|
||||
|
||||
float readKFactor();
|
||||
|
||||
float readKFactorSetpoint();
|
||||
|
||||
float readMaxFlow();
|
||||
|
||||
float readMaxFlowSetpoint();
|
||||
|
||||
float readMinFlow();
|
||||
|
||||
float readMinFlowSetpoint();
|
||||
|
||||
float readPressureOffset();
|
||||
|
||||
float readVelocityPressureSensor();
|
||||
|
||||
void setDevice(BDevice bDevice);
|
||||
|
||||
boolean validatePoints();
|
||||
|
||||
boolean writeControllerFlow(float f);
|
||||
|
||||
boolean writeControllerMode(int i);
|
||||
|
||||
boolean writeDuctArea(float f);
|
||||
|
||||
boolean writeFlowCalibrationFlag(int i);
|
||||
|
||||
boolean writeKFactor(float f);
|
||||
|
||||
boolean writeKFactorSetpoint(float f);
|
||||
|
||||
boolean writeMaxFlow(float f);
|
||||
|
||||
boolean writeMaxFlowSetpoint(float f);
|
||||
|
||||
boolean writeMinFlow(float f);
|
||||
|
||||
boolean writeMinFlowSetpoint(float f);
|
||||
}
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.resourceManager;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.BMemoryStructure;
|
||||
import javax.baja.sys.BInteger;
|
||||
|
||||
public interface IResourceManager {
|
||||
int[] assignTerminals(int i);
|
||||
|
||||
boolean checkActualMemoryAndValidate(BInteger bInteger, BInteger bInteger2, BInteger bInteger3, BInteger bInteger4, BInteger bInteger5);
|
||||
|
||||
boolean checkAvailabilityOfTerminals(int i);
|
||||
|
||||
boolean checkPotentialMemoryAndValidate(BInteger bInteger, BInteger bInteger2, BInteger bInteger3, BInteger bInteger4, BInteger bInteger5);
|
||||
|
||||
void freeActualDeletedMemory(BInteger bInteger, BInteger bInteger2, BInteger bInteger3, BInteger bInteger4, BInteger bInteger5);
|
||||
|
||||
void freePotentialDeletedMemory(BInteger bInteger, BInteger bInteger2, BInteger bInteger3, BInteger bInteger4, BInteger bInteger5);
|
||||
|
||||
int getActualFreeMemory(BInteger bInteger);
|
||||
|
||||
int getActualUsedMemory(BInteger bInteger);
|
||||
|
||||
int getAnalogInputUsage();
|
||||
|
||||
int getAnalogOutputUsage();
|
||||
|
||||
int getDigitalInputUsage();
|
||||
|
||||
int getDigitalOutputUsage();
|
||||
|
||||
int getFreeBlockCount();
|
||||
|
||||
int getFreeNvCount();
|
||||
|
||||
int getFreeNvFieldCount();
|
||||
|
||||
int getOrderOfIO(Integer num);
|
||||
|
||||
int getPotentialFreeMemory(BInteger bInteger);
|
||||
|
||||
byte[] getTerminalAssignmentArray();
|
||||
|
||||
boolean isAnalogInputPin(int i);
|
||||
|
||||
boolean isAnalogOutputPin(int i);
|
||||
|
||||
boolean isDigitalInputPin(int i);
|
||||
|
||||
boolean isDigitalOutputPin(int i);
|
||||
|
||||
boolean isMiscPin(int i);
|
||||
|
||||
void resetMemoryCounters(BInteger bInteger, BInteger bInteger2, BInteger bInteger3);
|
||||
|
||||
void setActualMemory(BInteger bInteger, BInteger bInteger2);
|
||||
|
||||
void setNvFieldCount(BInteger bInteger);
|
||||
|
||||
void setPotentialMemory(BInteger bInteger, BInteger bInteger2);
|
||||
|
||||
void setTerminalAssignmentArray(byte[] bArr);
|
||||
|
||||
void setUsedBlockCount(BInteger bInteger);
|
||||
|
||||
void started() throws Exception;
|
||||
|
||||
void unassignTerminals(int[] iArr);
|
||||
|
||||
void updateCounters(int[] iArr);
|
||||
|
||||
void updateMemoryStructures(BInteger bInteger, BMemoryStructure bMemoryStructure);
|
||||
}
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
<panes version="1">
|
||||
<save_lib_item default_text="SaveLibItem" type="javax.baja.ui.BWidget" x="200.0" y="200.0" w="370.0" h="480">
|
||||
<lb_name default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="13.0" w="90.0" h="20.0"/>
|
||||
<tf_name default_text="Name" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="100.0" y="13.0" w="170.0" h="20.0"/>
|
||||
<lb_type default_text="Type" type="javax.baja.ui.BLabel" x="20.0" y="43.0" w="90.0" h="20.0"/>
|
||||
<edd_type default_text="Type" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="100.0" y="43.0" w="270.0" h="20.0"/>
|
||||
<lb_features default_text="Features" type="javax.baja.ui.BLabel" x="380.0" y="43.0" w="50.0" h="20.0"/>
|
||||
<pane_features default_text="Features" type="javax.baja.ui.list.BCheckList" x="440.0" y="43.0" w="270.0" h="70.0"/>
|
||||
|
||||
|
||||
<lb_device_class default_text="Program-id" type="javax.baja.ui.BLabel" x="380.0" y="13.0" w="90.0" h="20.0"/>
|
||||
<tf_device_class1 default_text="90" type="javax.baja.ui.BTextField" x="440.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class2 default_text="00" type="javax.baja.ui.BTextField" x="465.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class3 default_text="0c" type="javax.baja.ui.BTextField" x="490.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class4 default_text="52" type="javax.baja.ui.BTextField" x="515.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class5 default_text="00" type="javax.baja.ui.BTextField" x="540.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class6 default_text="03" type="javax.baja.ui.BTextField" x="565.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class7 default_text="04" type="javax.baja.ui.BTextField" x="590.0" y="13.0" w="24.0" h="20.0"/>
|
||||
<tf_device_class8 default_text="38" type="javax.baja.ui.BTextField" x="615.0" y="13.0" w="24.0" h="20.0"/>
|
||||
|
||||
<lb_version default_text="Version" type="javax.baja.ui.BLabel" x="20.0" y="73.0" w="90.0" h="20.0"/>
|
||||
<tf_version default_text="Version" type="javax.baja.ui.BTextField" x="100.0" y="73.0" w="50.0" h="20.0"/>
|
||||
<lb_description default_text="Description" type="javax.baja.ui.BLabel" x="20.0" y="103.0" w="90.0" h="20.0"/>
|
||||
<tf_description default_text="Description" type="javax.baja.ui.pane.BTextEditorPane" x="100.0" y="103.0" w="270.0" h="70.0"/>
|
||||
|
||||
<lb_attachment default_text="Attachment" type="javax.baja.ui.BLabel" x="20.0" y="183.0" w="90.0" h="20.0"/>
|
||||
<tf_attachment default_text="Attachment" type="javax.baja.ui.BTextField" x="100.0" y="183.0" w="170.0" h="20.0"/>
|
||||
<bt_browse default_text="..." type="javax.baja.ui.BButton" x="275.0" y="165.0" w="17.0" h="18.0"/>
|
||||
<bt_add default_text="Add" type="javax.baja.ui.BButton" x="250.0" y="246.0" w="55.0" h="20.0"/>
|
||||
<lt_attachments default_text="Attachments" type="javax.baja.ui.list.BList" x="100.0" y="183.0" w="270.0" h="53.0"/>
|
||||
<bt_remove default_text="Remove" type="javax.baja.ui.BButton" x="315.0" y="246.0" w="55.0" h="20.0"/>
|
||||
<lb_note default_text="Note - Type information goes to Controller. Changing it would modify the application." type="javax.baja.ui.BLabel" x="20.0" y="276.0" w="480.0" h="30.0"/>
|
||||
|
||||
</save_lib_item>
|
||||
</panes>
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
<panes version="1">
|
||||
<save_lib_item default_text="SaveLibItem" type="javax.baja.ui.BWidget" x="200.0" y="200.0" w="370.0" h="480">
|
||||
<lb_name default_text="Name" type="javax.baja.ui.BLabel" x="20.0" y="13.0" w="90.0" h="20.0"/>
|
||||
<tf_name default_text="Name" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BStringTextField" x="100.0" y="13.0" w="170.0" h="20.0"/>
|
||||
<lb_type default_text="Type" type="javax.baja.ui.BLabel" x="20.0" y="43.0" w="90.0" h="20.0"/>
|
||||
<edd_type default_text="Type" type="com.honeywell.honeywellXL10NextGen.xl10Controller.ui.BEnumDropDown" x="100.0" y="43.0" w="130.0" h="20.0"/>
|
||||
<lb_version default_text="Version" type="javax.baja.ui.BLabel" x="20.0" y="73.0" w="90.0" h="20.0"/>
|
||||
<tf_version default_text="Version" type="javax.baja.ui.BTextField" x="100.0" y="73.0" w="50.0" h="20.0"/>
|
||||
<lb_description default_text="Description" type="javax.baja.ui.BLabel" x="20.0" y="103.0" w="90.0" h="20.0"/>
|
||||
<tf_description default_text="Description" type="javax.baja.ui.pane.BTextEditorPane" x="100.0" y="103.0" w="270.0" h="70.0"/>
|
||||
|
||||
<lb_attachment default_text="Attachment" type="javax.baja.ui.BLabel" x="20.0" y="183.0" w="90.0" h="20.0"/>
|
||||
<tf_attachment default_text="Attachment" type="javax.baja.ui.BTextField" x="100.0" y="183.0" w="170.0" h="20.0"/>
|
||||
<bt_browse default_text="..." type="javax.baja.ui.BButton" x="275.0" y="215.0" w="17.0" h="18.0"/>
|
||||
<bt_add default_text="Add" type="javax.baja.ui.BButton" x="250.0" y="238.0" w="55.0" h="20.0"/>
|
||||
<lt_attachments default_text="Attachments" type="javax.baja.ui.list.BList" x="100.0" y="183.0" w="270.0" h="53.0"/>
|
||||
<bt_remove default_text="Remove" type="javax.baja.ui.BButton" x="315.0" y="238.0" w="55.0" h="20.0"/>
|
||||
<lb_note default_text="Note - Type information goes to Piranha controller. Changing it would modify the application." type="javax.baja.ui.BLabel" x="20.0" y="260.0" w="480.0" h="30.0"/>
|
||||
|
||||
</save_lib_item>
|
||||
</panes>
|
||||
@@ -0,0 +1,75 @@
|
||||
<!-- Modified By : Ravi Bharathi .K-->
|
||||
<!-- Modified For : Added Enum Values for the Point Dialog Drop Down Values-->
|
||||
|
||||
<!-- Modified By : Shilpa -->
|
||||
<!-- Modified For : Added xl10_nci v="2" for the Point Dialog Drop Down Values-->
|
||||
|
||||
<!-- Modified By : Shilpa -->
|
||||
<!-- Modified For : Micro Merge changed the values for app category : To fix SpyderBACnet PCT 775 -->
|
||||
|
||||
<!--<?xml version="1.0" encoding="UTF-8"?>-->
|
||||
<xl10_piranha>
|
||||
<app_category default="1">
|
||||
<app_general_sys v="1"/>
|
||||
<app_vav_single_duct_sys v="2">
|
||||
<app_vav_single_duct_sys_air_balance v="1"/>
|
||||
<app_vav_single_duct_sys_reheat_valve_override v="2"/>
|
||||
<app_vav_single_duct_sys_peripheral_heat_valve_override v="3"/>
|
||||
<app_vav_single_duct_sys_serial_fan_speed v="4"/>
|
||||
<app_vav_single_duct_sys_fan_override v="5"/>
|
||||
<app_vav_single_duct_sys_series_fan v="6"/>
|
||||
<app_vav_single_duct_sys_parallel_fan v="7"/>
|
||||
</app_vav_single_duct_sys>
|
||||
<app_cvahu_single_duct_sys v="3"/>
|
||||
<app_vav_double_duct_sys v="4">
|
||||
<app_vav_single_duct_sys_air_balance v="1"/>
|
||||
<app_vav_single_duct_sys_reheat_valve_override v="2"/>
|
||||
<app_vav_single_duct_sys_peripheral_heat_valve_override v="3"/>
|
||||
<app_vav_single_duct_sys_serial_fan_speed v="4"/>
|
||||
<app_vav_single_duct_sys_fan_override v="5"/>
|
||||
<app_vav_single_duct_sys_series_fan v="6"/>
|
||||
<app_vav_single_duct_sys_parallel_fan v="7"/>
|
||||
</app_vav_double_duct_sys>
|
||||
<app_vav_flow_tracking_sys v="5"/>
|
||||
<app_water_source_heat_sys v="6"/>
|
||||
<app_unit_vent_sys v="7"/>
|
||||
<app_fcu_sys v="8"/>
|
||||
<app_cvahu_double_duct_sys v="9"/>
|
||||
<app_vav_ahu_single_duct_sys v="10"/>
|
||||
<app_vav_ahu_double_duct_sys v="11"/>
|
||||
<app_multi_zone_ahu_sys v="12"/>
|
||||
<app_czs_ahu_sys v="13"/>
|
||||
<app_czs_zone_terminal v="14"/>
|
||||
<app_cv_zone_terminal_reheat v="15"/>
|
||||
<app_cv_zone_terminal_double_duct v="16"/>
|
||||
</app_category>
|
||||
|
||||
<!--
|
||||
Enum Ranges:
|
||||
===========
|
||||
Software Inputs = 0 to 25
|
||||
* [Dont use Range [2], which has predefined value only for xl10_nci]
|
||||
Physical Inputs = 26 to 50
|
||||
Software Outputs = 51 to 75
|
||||
Physical Outputs = 76 to 100
|
||||
|
||||
-->
|
||||
<software_input default="0">
|
||||
<xl10_constant v="0" />
|
||||
<xl10_nvi v="1" />
|
||||
<xl10_nci v="2" />
|
||||
<xl10_ai v="26" />
|
||||
<xl10_di v="27" />
|
||||
</software_input>
|
||||
|
||||
<software_output default="51">
|
||||
<xl10_nvo v="51" />
|
||||
<xl10_ao v="76" />
|
||||
<xl10_do v="77" />
|
||||
</software_output>
|
||||
|
||||
</xl10_piranha>
|
||||
|
||||
|
||||
|
||||
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.ui;
|
||||
|
||||
public interface IConfigurationStepContainer {
|
||||
void finalUnload() throws StepContainerException;
|
||||
|
||||
BStep[] getSteps();
|
||||
|
||||
void load(int i) throws StepContainerException;
|
||||
|
||||
void reset();
|
||||
|
||||
void save();
|
||||
|
||||
void unload(int i) throws StepContainerException;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.ui;
|
||||
|
||||
public interface Scaling {
|
||||
public static final int EXPONENTIAL = 2;
|
||||
public static final int MULTIPLE = 1;
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.upload;
|
||||
|
||||
public interface INetworkUpload {
|
||||
public static final int ERR_INVALID_CNFG = 1;
|
||||
public static final int ERR_INVALID_SCALAR_INDEX_NV = 3;
|
||||
public static final int ERR_INVALID_UNIT_INDEX_NV = 2;
|
||||
public static final int ERR_NULL = -1;
|
||||
public static final int ERR_READ_FAIL = 4;
|
||||
public static final int ERR_SUCCESS = 0;
|
||||
public static final int ERR_UNKNOWN_EXP = -2;
|
||||
public static final int ERR_WRONG_FIELD_TYPE = 5;
|
||||
|
||||
void InitializeFileVariables();
|
||||
|
||||
int formNetworkObjConfiguration();
|
||||
|
||||
boolean initializeReferences();
|
||||
|
||||
boolean isObjectExposable(String str);
|
||||
|
||||
int readDlsAndScheduleFile();
|
||||
|
||||
int readFile();
|
||||
|
||||
byte[] readProxyFile(int i);
|
||||
|
||||
void setUploadObject(BIUpload bIUpload);
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.validation;
|
||||
|
||||
import javax.baja.naming.BOrd;
|
||||
|
||||
public interface ISpyderValidate {
|
||||
public static final int VALIDATION_FAILED = 2;
|
||||
public static final int VALIDATION_PENDING = 1;
|
||||
public static final int VALIDATION_SUCCESS = 0;
|
||||
|
||||
void cancelValidate(BOrd bOrd);
|
||||
|
||||
int getValidateStatus();
|
||||
|
||||
void setValidateStatus(int i);
|
||||
|
||||
BOrd validate(BSpyderValidationParameters bSpyderValidationParameters);
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.validation;
|
||||
|
||||
public interface IValidationErrors {
|
||||
public static final int BLOCK_LIMIT_REACHED = 32;
|
||||
public static final int ERROR = 65535;
|
||||
public static final int INVALID_LINK_KNOB = 128;
|
||||
public static final int INVALID_POINT = 4;
|
||||
public static final int NO_ERROR = 0;
|
||||
public static final int NV_LIMIT_REACHED = 16;
|
||||
public static final int OUT_OF_MEMORY = 1;
|
||||
public static final int UNASSIGNED_IO = 2;
|
||||
public static final int UNITS_UNAVAILABLE = 8;
|
||||
public static final int UNUSED_BLOCK = 64;
|
||||
}
|
||||
Reference in New Issue
Block a user