2023-09-17 22:13:42 +03:00
|
|
|
package ProjectData.SapforData.Loops;
|
2024-10-07 14:44:24 +03:00
|
|
|
import _VisualDVM.Syntax.VisualiserFonts;
|
2023-09-17 22:13:42 +03:00
|
|
|
import ProjectData.Files.DBProjectFile;
|
|
|
|
|
import ProjectData.SapforData.FileObjectWithMessages;
|
|
|
|
|
public class IO extends FileObjectWithMessages {
|
|
|
|
|
public IO(DBProjectFile father_in, int lineNum_in) {
|
|
|
|
|
super(father_in, lineNum_in);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String Description() {
|
|
|
|
|
return "оператор ввода-вывода";
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public VisualiserFonts getFont() {
|
|
|
|
|
return VisualiserFonts.BadState;
|
|
|
|
|
}
|
|
|
|
|
}
|