3 declare(strict_types=1);
    51         $this->varname = $a_varname;
    61         switch (strtolower($a_vartype)) {
    64                 $this->vartype = self::VARTYPE_INTEGER;
    68                 $this->vartype = self::VARTYPE_STRING;
    72                 $this->vartype = self::VARTYPE_DECIMAL;
    76                 $this->vartype = self::VARTYPE_SCIENTIFIC;
    80                 $this->vartype = self::VARTYPE_BOOLEAN;
    84                 $this->vartype = self::VARTYPE_ENUMERATED;
    88                 $this->vartype = self::VARTYPE_SET;
   100         $this->defaultval = $a_defaultval;
   110         $this->minvalue = $a_minvalue;
   120         $this->maxvalue = $a_maxvalue;
   130         $this->members = $a_members;
   140         $this->cutvalue = $a_cutvalue;
   150         $this->content = $a_content;
 
setCutvalue(string $a_cutvalue)
 
setMinvalue(string $a_minvalue)
 
setMaxvalue(string $a_maxvalue)
 
setVartype(string $a_vartype)
 
setDefaultval(string $a_defaultval)
 
setContent(string $a_content)
 
setMembers(string $a_members)
 
setVarname(string $a_varname)