public fbStation(Vortex.Connector.IVortexObject parent, string readableTail, string symbolTail)
 {
     this.@SymbolTail = symbolTail;
     this.@Connector  = parent.GetConnector();
     this.@ValueTags  = new System.Collections.Generic.List <Vortex.Connector.IValueTag>();
     this.@Parent     = parent;
     _humanReadable   = Vortex.Connector.IConnector.CreateSymbol(parent.HumanReadable, readableTail);
     this.Kids        = new System.Collections.Generic.List <Vortex.Connector.IVortexElement>();
     this.@Children   = new System.Collections.Generic.List <Vortex.Connector.IVortexObject>();
     PexPreConstructor(parent, readableTail, symbolTail);
     Symbol         = Vortex.Connector.IConnector.CreateSymbol(parent.Symbol, symbolTail);
     __modeSelector = @Connector.Online.Adapter.CreateINT(this, "<#Select mode#>", "_modeSelector");
     _modeSelector.AttributeName = "<#Select mode#>";
     __modeCurrent = @Connector.Online.Adapter.CreateINT(this, "<#CurrentMode#>", "_modeCurrent");
     _modeCurrent.MakeReadOnly();
     _modeCurrent.AttributeName = "<#CurrentMode#>";
     __stepInfo = @Connector.Online.Adapter.CreateSTRING(this, "<#Step description#>", "_stepInfo");
     _stepInfo.AttributeName    = "<#Step description#>";
     __errorInfo                = @Connector.Online.Adapter.CreateSTRING(this, "<#Error description#>", "_errorInfo");
     _errorInfo.AttributeName   = "<#Error description#>";
     __components               = new stComponents(this, "<#Components#>", "_components");
     __components.AttributeName = "<#Components#>";
     __data = new stData(this, "<#Data#>", "_data");
     __data.AttributeName = "<#Data#>";
     AttributeName        = "";
     parent.AddChild(this);
     parent.AddKid(this);
     PexConstructor(parent, readableTail, symbolTail);
 }
 public fbStation()
 {
     PexPreConstructorParameterless();
     __modeSelector = Vortex.Connector.IConnectorFactory.CreateINT();
     _modeSelector.AttributeName = "<#Select mode#>";
     __modeCurrent = Vortex.Connector.IConnectorFactory.CreateINT();
     _modeCurrent.AttributeName = "<#CurrentMode#>";
     __stepInfo = Vortex.Connector.IConnectorFactory.CreateSTRING();
     _stepInfo.AttributeName    = "<#Step description#>";
     __errorInfo                = Vortex.Connector.IConnectorFactory.CreateSTRING();
     _errorInfo.AttributeName   = "<#Error description#>";
     __components               = new stComponents();
     __components.AttributeName = "<#Components#>";
     __data = new stData();
     __data.AttributeName = "<#Data#>";
     AttributeName        = "";
     PexConstructorParameterless();
 }