com.netgrif.application.engine.petrinet.domain.arcs.QPTArc 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.arcs;
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;
import com.querydsl.core.types.dsl.PathInits;
/**
* QPTArc is a Querydsl query type for PTArc
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QPTArc extends EntityPathBase {
private static final long serialVersionUID = -1584880900L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QPTArc pTArc = new QPTArc("pTArc");
public final QArc _super;
// inherited
public final org.bson.types.QObjectId _id;
//inherited
public final ListPath breakpoints;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QNode destination;
//inherited
public final StringPath destinationId;
//inherited
public final BooleanPath executable;
//inherited
public final StringPath importId;
//inherited
public final NumberPath multiplicity;
// inherited
public final org.bson.types.QObjectId objectId;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QPlace place;
// inherited
public final com.netgrif.application.engine.petrinet.domain.arcs.reference.QReference reference;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QNode source;
//inherited
public final StringPath sourceId;
//inherited
public final StringPath stringId;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QTransition transition;
public QPTArc(String variable) {
this(PTArc.class, forVariable(variable), INITS);
}
public QPTArc(Path extends PTArc> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QPTArc(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QPTArc(PathMetadata metadata, PathInits inits) {
this(PTArc.class, metadata, inits);
}
public QPTArc(Class extends PTArc> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QArc(type, metadata, inits);
this._id = _super._id;
this.breakpoints = _super.breakpoints;
this.destination = _super.destination;
this.destinationId = _super.destinationId;
this.executable = _super.executable;
this.importId = _super.importId;
this.multiplicity = _super.multiplicity;
this.objectId = _super.objectId;
this.place = _super.place;
this.reference = _super.reference;
this.source = _super.source;
this.sourceId = _super.sourceId;
this.stringId = _super.stringId;
this.transition = _super.transition;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy