Files
VisualSapfor/src/_VisualDVM/GlobalData/CompilerEnvironment/Json/EnvironmentJson.java
02090095 19afec4d25 утренние изменения
удаление эталона и роль студента
2025-03-26 16:12:00 +03:00

18 lines
646 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package _VisualDVM.GlobalData.CompilerEnvironment.Json;
import _VisualDVM.GlobalData.CompilerEnvironment.CompilerEnvironment;
import com.google.gson.annotations.Expose;
public class EnvironmentJson {
@Expose
public String name; //в том числе и с разделителем если есть. поиск по startswith
@Expose
public String value; //значение без кавычек
public EnvironmentJson(CompilerEnvironment src) {
name = src.name;
value = src.value;
}
public EnvironmentJson(String name_in, String value_in) {
name = name_in;
value = value_in;
}
}