2023-09-17 22:13:42 +03:00
|
|
|
package ProjectData.SapforData.Loops;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common_old.UI.Themes.VisualiserFonts;
|
2023-09-17 22:13:42 +03:00
|
|
|
import ProjectData.Files.DBProjectFile;
|
|
|
|
|
import ProjectData.SapforData.FileObjectWithMessages;
|
|
|
|
|
public class EGoto extends FileObjectWithMessages {
|
|
|
|
|
public EGoto(DBProjectFile father_in, int lineNum_in) {
|
|
|
|
|
super(father_in, lineNum_in);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String Description() {
|
|
|
|
|
return "вход внутрь цикла";
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public VisualiserFonts getFont() {
|
|
|
|
|
return VisualiserFonts.BadState;
|
|
|
|
|
}
|
|
|
|
|
}
|