private final MutableProperty<Object> builtInChangeSignal;
public MemProjectProperties() {
ProjectPlatform defaultPlatform = AbstractProjectPlatformSource.getDefaultPlatform();
JavaPlatform defaultJavaPlatform = JavaPlatform.getDefault();
this.builtInChangeSignal = new DefaultMutableProperty<>(new Object(), true, false);
this.sourceLevel = new DefaultMutableProperty<>(getSourceLevelFromPlatform(defaultPlatform), true, false);
this.platform = new DefaultMutableProperty<>(defaultPlatform, true, false);
this.scriptPlatform = new DefaultMutableProperty<>(defaultJavaPlatform, true, false);