GP-6483: Loader option redesign with tooltip support

This commit is contained in:
Ryan Kurtz
2026-04-03 13:02:53 -04:00
parent 45963533d2
commit bf9484fdab
42 changed files with 1654 additions and 671 deletions

View File

@@ -64,7 +64,9 @@ public class SkeletonExporter extends Exporter {
List<Option> list = new ArrayList<>();
// If this exporter has custom options, add them to 'list'
list.add(new Option("Option name goes here", "Default option value goes here"));
list.add(Option.newString("Option name goes here")
.value("Default option value goes here")
.build());
return list;
}

View File

@@ -63,7 +63,9 @@ public class SkeletonLoader extends AbstractProgramWrapperLoader {
isLoadIntoProgram, mirrorFsLayout);
// If this loader has custom options, add them to 'list'
list.add(new Option("Option name goes here", "Default option value goes here"));
list.add(Option.newString("Option name goes here")
.value("Default option value goes here")
.build());
return list;
}