Files
VisualSapfor/src/_VisualDVM/ProjectData/Files/LanguageStyle.java
2024-10-09 22:21:57 +03:00

33 lines
759 B
Java

package _VisualDVM.ProjectData.Files;
public enum LanguageStyle {
none,
fixed,
extended,
free;
public String getDescription() {
switch (this) {
case fixed:
return "Фиксированный";
case extended:
return "Расширенный";
case free:
return "Свободный";
case none:
return "нет";
}
return "";
}
public int getMargin() {
switch (this) {
case fixed:
return 72;
case extended:
return 132;
case free:
return 160;
default:
return 0;
}
}
}