/
comavp
/
first-interpreter
Обзор
Документация
Войти
/
comavp
/
first-interpreter
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/interpreter/Identificator.java
39 строк
661 B
Anton
Initial commit
08 июл 2020, 21:40
08 июл 2020, 21:40
c01afc7
Код
Авторство
О чём код?
package interpreter; public class Identificator { private String type; private String id; private String value; public Identificator(String type, String id, String value) { this.type = type; this.id = id; this.value = value; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }