io.deephaven.appmode.QSTApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-application-mode Show documentation
Show all versions of deephaven-application-mode Show documentation
The 'application-mode' project
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.appmode;
import io.deephaven.annotations.SimpleStyle;
import org.immutables.value.Value.Immutable;
import java.util.Properties;
@Immutable
@SimpleStyle
public abstract class QSTApplication implements ApplicationConfig {
public static final String TYPE = "qst";
public static QSTApplication parse(Properties properties) {
return of();
}
public static ImmutableQSTApplication of() {
return ImmutableQSTApplication.of();
}
// TODO core#1080: QST structure undecided
public boolean isEnabled() {
return false;
}
@Override
public final V walk(V visitor) {
visitor.visit(this);
return visitor;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy