Beispiel #1
0
 public VBEvent(BaseController controller, BaseDataType type, string name, string modifier) : base(controller, type, name, modifier)
 {
 }
 /// <summary>
 ///   Initializes a new instance of the <see cref = "ImageResizerPrevalueEditor" /> class.
 /// </summary>
 /// <param name = "dataType">Type of the data.</param>
 public ImageResizerPrevalueEditor(BaseDataType dataType)
 {
     _dataType = dataType;
 }
Beispiel #3
0
 public VBOperator(VBController controller, string name, BaseDataType type, string modifier)
     : base(controller, name, type, modifier)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AbstractJsonPrevalueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 protected AbstractJsonPrevalueEditor(BaseDataType dataType)
 {
     this.DataType = dataType;
 }
Beispiel #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MultiUrlPickerPreValueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public MultiUrlPickerPreValueEditor(BaseDataType dataType)
     : base(dataType)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="XmlData"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public CFLC_Data(BaseDataType dataType)
     : base(dataType)
 {
 }
Beispiel #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AS3U_PrevalueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public AS3U_PrevalueEditor(BaseDataType dataType)
     : base(dataType, DBTypes.Ntext)
 {
 }
Beispiel #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NoOptionsPrevalueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 /// <param name="dbType">Type of the db.</param>
 public NoOptionsPrevalueEditor(BaseDataType dataType, DBTypes dbType)
     : base()
 {
     this.m_DataType        = dataType;
     this.m_DataType.DBType = dbType;
 }
 public VBDelegate(BaseController controller, string name, BaseDataType type, string modifier) : base(controller, name, type, modifier)
 {
 }
 public UrlTrackerPrevalueEditor(BaseDataType dataType)
 {
     _datatype = dataType;
 }
Beispiel #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.PlaceHolder"/> class.
 /// </summary>
 public DevicePrevalueEditor(BaseDataType dataType)
 {
     _datatype = dataType;
     InitializeControls();
 }
Beispiel #12
0
 public VBOperator(VBController controller, string name, BaseDataType type, string modifier) : base(controller, name, type, modifier)
 {
 }
Beispiel #13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="XmlData"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public XmlData(BaseDataType dataType)
     : base(dataType)
 {
 }
Beispiel #14
0
 public TimeSerialListClass(BaseDataType type, Cycle cyc)
 {
     DataType = type;
     UseCycle = cyc;
 }
Beispiel #15
0
 public WebBlocksPrevalueEditor(BaseDataType dataType)
 {
     _dataType = dataType;
 }
Beispiel #16
0
 public VBDelegate(BaseController controller, string name, List <string> modifiers, string genericType, IEnumerable <BaseParameter> parameters, BaseDataType returnType, CodeLanguage language, BaseBaseConstruct parentObject, int nodeIndex) : base(controller, name, modifiers, genericType, parameters, returnType, language, parentObject, nodeIndex)
 {
 }
Beispiel #17
0
 public IDataTypeBuilder(BaseDataType _base)
 {
     _IDataType = new IDataType(_base);
 }
Beispiel #18
0
 public VBDelegate(BaseController controller, string name, BaseDataType returnType) : base(controller, name, returnType)
 {
 }
Beispiel #19
0
 protected AbstractData(BaseDataType type)
 {
     Type = type;
 }
Beispiel #20
0
 public Int64Data64(BaseDataType type, BinaryReader reader, Dictionary <string, object> options)
     : base(type, reader, options)
 {
 }
Beispiel #21
0
 /// <summary>
 /// Initializes a new instance of the <see cref="KeyValuePrevalueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public KeyValuePrevalueEditor(BaseDataType dataType)
     : base(dataType)
 {
 }
Beispiel #22
0
 public VBDelegate(BaseController controller, string name, BaseDataType type, string modifier)
     : base(controller, name, type, modifier)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AbstractJsonPrevalueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 /// <param name="dbType">Type of the database field.</param>
 protected AbstractJsonPrevalueEditor(BaseDataType dataType, DBTypes dbType)
     : base()
 {
     this.DataType        = dataType;
     this.DataType.DBType = dbType;
 }
Beispiel #24
0
 public VBDelegate(BaseController controller, string name, List<string> modifiers, string genericType, IEnumerable<BaseParameter> parameters, BaseDataType returnType, CodeLanguage language, BaseBaseConstruct parentObject, int nodeIndex)
     : base(controller, name, modifiers, genericType, parameters, returnType, language, parentObject, nodeIndex)
 {
 }
Beispiel #25
0
 public VBFunction(BaseController controller, string name, BaseDataType type)
     : base(controller, name, type)
 {
 }
Beispiel #26
0
 public VBDelegate(BaseController controller, string name, BaseDataType returnType)
     : base(controller, name, returnType)
 {
 }
Beispiel #27
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CFLC_PrevalueEditor"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public CFLC_PrevalueEditor(BaseDataType dataType)
     : base(dataType, DBTypes.Ntext)
 {
     // get PreValues, load them into the controls.
     cflc_options = this.GetPreValueOptions <CFLC_Options>();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TextstringArrayData"/> class.
 /// </summary>
 /// <param name="dataType">Type of the data.</param>
 public TextstringArrayData(BaseDataType dataType, TextstringArrayOptions options)
     : base(dataType)
 {
     this.options = options;
 }
Beispiel #29
0
 public VBField(BaseController controller, BaseDataType type, string name, string modifier)
     : base(controller, type, name, modifier)
 {
 }
Beispiel #30
0
 public VBFunction(BaseController controller, string name, BaseDataType type) : base(controller, name, type)
 {
 }