MultiChronopicType.MultiChronopicType C# (CSharp) Method

MultiChronopicType() public method

public MultiChronopicType ( string name ) : System
name string
return System
    public MultiChronopicType(string name)
    {
        type = Types.MULTICHRONOPIC;
        this.name = name;
        this.description = "";
        this.longDescription = "";

        //if this changes, sqlite/pulseType.cs initialize table should change
        if(name == Constants.MultiChronopicName) {
            syncAvailable = true;
            imageFileName = "multiChronopic.png";

        } else if(name == Constants.RunAnalysisName) {
            syncAvailable = false;
            imageFileName = "run_analysis.png";
        }
    }

Same methods

MultiChronopicType::MultiChronopicType ( ) : System
MultiChronopicType