blob: ca9d3fff44cbe3329b9c74f020863b7c74c009d1 [file] [log] [blame]
package com.intellij.tasks.jira.jql.psi;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author Mikhail Golubev
*/
public interface JqlClauseWithHistoryPredicates extends JqlElement {
@Nullable
JqlOperand getAfter();
@Nullable
JqlOperand getBefore();
@Nullable
JqlOperand getOn();
@Nullable
JqlOperand getBy();
@Nullable
JqlOperand getDuring();
@Nullable
JqlOperand getFrom();
@Nullable
JqlOperand getTo();
@NotNull
JqlHistoryPredicate[] getHistoryPredicates();
}