com.netgrif.application.engine.petrinet.domain.dataset.logic.QFieldLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.petrinet.domain.dataset.logic;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
/**
* QFieldLayout is a Querydsl query type for FieldLayout
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QFieldLayout extends BeanPath {
private static final long serialVersionUID = -934208605L;
public static final QFieldLayout fieldLayout = new QFieldLayout("fieldLayout");
public final com.netgrif.application.engine.petrinet.domain.layout.QLayout _super = new com.netgrif.application.engine.petrinet.domain.layout.QLayout(this);
public final StringPath alignment = createString("alignment");
public final StringPath appearance = createString("appearance");
//inherited
public final NumberPath cols = _super.cols;
public final NumberPath offset = createNumber("offset", Integer.class);
//inherited
public final NumberPath rows = _super.rows;
public final StringPath template = createString("template");
public final NumberPath x = createNumber("x", Integer.class);
public final NumberPath y = createNumber("y", Integer.class);
public QFieldLayout(String variable) {
super(FieldLayout.class, forVariable(variable));
}
public QFieldLayout(Path extends FieldLayout> path) {
super(path.getType(), path.getMetadata());
}
public QFieldLayout(PathMetadata metadata) {
super(FieldLayout.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy