lphystudio.app.graphicalmodelpanel.viewer.StringArrayLabel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-studio Show documentation
Show all versions of lphy-studio Show documentation
The GUI for LPhy language.
The newest version!
package lphystudio.app.graphicalmodelpanel.viewer;
import lphy.core.model.Value;
import static lphy.core.model.datatype.StringArrayValue.quotedString;
public class StringArrayLabel extends ArrayLabel {
public StringArrayLabel(Value values) {
super(values);
}
public StringArrayLabel(String[] values) {
super(values);
}
@Override
public String valueToString(String rawValue) {
return quotedString(rawValue);
}
}