com.netgrif.application.engine.petrinet.domain.layout.QLayout 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.layout;
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;
/**
* QLayout is a Querydsl query type for Layout
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QLayout extends BeanPath {
private static final long serialVersionUID = -2059449453L;
public static final QLayout layout = new QLayout("layout");
public final NumberPath cols = createNumber("cols", Integer.class);
public final NumberPath rows = createNumber("rows", Integer.class);
public QLayout(String variable) {
super(Layout.class, forVariable(variable));
}
public QLayout(Path extends Layout> path) {
super(path.getType(), path.getMetadata());
}
public QLayout(PathMetadata metadata) {
super(Layout.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy