запаковка со стороны визуализатора инклудов

This commit is contained in:
2025-06-06 22:59:58 +03:00
parent 7924212fed
commit 641ce80102
3 changed files with 20 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
package _VisualDVM.ProjectData.SapforData.Includes.Transformation;
import Common.Utils.Utils_;
import com.google.gson.annotations.Expose;
public class IncludeToInsertJson {
@Expose
@@ -7,4 +8,14 @@ public class IncludeToInsertJson {
public String fileName;
@Expose
public int line;
//--
public IncludeToInsertJson(){
}
//--
public IncludeToInsertJson(String includeName_in, String fileName_in, int line_in){
includeName = Utils_.toU(includeName_in);
fileName = Utils_.toU(fileName_in);
line= line_in;
}
}