001package org.hl7.fhir.r5.utils.structuremap;
002
003public class VariableForProfiling {
004  private VariableMode mode;
005  private String name;
006  private PropertyWithType property;
007
008  public VariableForProfiling(VariableMode mode, String name, PropertyWithType property) {
009    super();
010    this.mode = mode;
011    this.name = name;
012    this.property = property;
013  }
014
015  public VariableMode getMode() {
016    return mode;
017  }
018
019  public String getName() {
020    return name;
021  }
022
023  public PropertyWithType getProperty() {
024    return property;
025  }
026
027  public String summary() {
028    return name + ": " + property.summary();
029  }
030}