2023-09-17 22:13:42 +03:00
|
|
|
package Common.UI.Menus_2023.EnvironmentValuesMenuBar;
|
|
|
|
|
import Common.UI.Menus_2023.DataMenuBar;
|
2023-11-19 01:53:56 +03:00
|
|
|
import Common.Passes.PassCode_2021;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class EnvironmentValuesMenuBar extends DataMenuBar {
|
|
|
|
|
public EnvironmentValuesMenuBar() {
|
|
|
|
|
super("переменные окружения", PassCode_2021.AddEnvironmentValue,
|
|
|
|
|
PassCode_2021.EditEnvironmentValue,
|
|
|
|
|
PassCode_2021.DeleteEnvironmentValue,
|
|
|
|
|
PassCode_2021.PickCompilerEnvironments
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|