congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
org.jenkinsci.plugins.pipeline.modeldefinition.ast
Code IndexAdd Tabnine to your IDE (free)

How to use org.jenkinsci.plugins.pipeline.modeldefinition.ast

Best Java code snippets using org.jenkinsci.plugins.pipeline.modeldefinition.ast (Showing top 20 results out of 315)

origin: jenkinsci/pipeline-model-definition-plugin

  @Override
  public int hashCode() {
    int result = super.hashCode();
    result = 31 * result + (getValue() != null ? getValue().hashCode() : 0);
    return result;
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  key.removeSourceLocation();
  value.removeSourceLocation();
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  if (args != null) {
    args.removeSourceLocation();
  }
  for (ModelASTWhenContent child : children) {
    child.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

protected boolean isLiteralSingleArg() {
  return getArgs() != null
      && getSingleValue() != null
      && getSingleValue().isLiteral();
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTValue argument : arguments) {
    argument.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTValue v : libs) {
    v.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTOption option : options) {
    option.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTStage stage : stages) {
    stage.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTWhenContent c : conditions) {
    c.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTBuildParameter parameter: parameters) {
    parameter.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  if (args != null) {
    args.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTTrigger trigger : triggers) {
    trigger.removeSourceLocation();
  }
}
origin: org.jenkinsci.plugins/pipeline-model-api

  @Override
  public int hashCode() {
    int result = super.hashCode();
    result = 31 * result + (getValue() != null ? getValue().hashCode() : 0);
    return result;
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  if (agentType != null) {
    agentType.removeSourceLocation();
  }
  if (variables != null) {
    variables.removeSourceLocation();
  }
}
origin: org.jenkinsci.plugins/pipeline-model-api

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  if (args != null) {
    args.removeSourceLocation();
  }
  for (ModelASTWhenContent child : children) {
    child.removeSourceLocation();
  }
}
origin: jenkinsci/pipeline-model-definition-plugin

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  if (value != null) {
    value.removeSourceLocation();
  }
}
origin: org.jenkinsci.plugins/pipeline-model-api

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTValue v : libs) {
    v.removeSourceLocation();
  }
}
origin: org.jenkinsci.plugins/pipeline-model-api

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  key.removeSourceLocation();
  value.removeSourceLocation();
}
origin: org.jenkinsci.plugins/pipeline-model-api

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  for (ModelASTValue argument : arguments) {
    argument.removeSourceLocation();
  }
}
origin: org.jenkinsci.plugins/pipeline-model-api

@Override
public void removeSourceLocation() {
  super.removeSourceLocation();
  if (agentType != null) {
    agentType.removeSourceLocation();
  }
  if (variables != null) {
    variables.removeSourceLocation();
  }
}
org.jenkinsci.plugins.pipeline.modeldefinition.ast

Most used classes

  • ModelASTStage
    Represents an individual Stage and the ModelASTBranchs it may contain.
  • ModelASTStep
    Represents an individual step within any of the various blocks that can contain steps.
  • ModelASTBranch
    Represents a branch of Pipeline steps to execute, either as part of a parallel block, or on its own.
  • ModelASTKey
    Represents the key in a key/value pair, as used in ModelASTEnvironment, ModelASTNamedArgumentList an
  • ModelASTNamedArgumentList
    Represents the named parameters for a step in a map of ModelASTKeys and ModelASTValues.
  • ModelASTPipelineDef,
  • ModelASTSingleArgument,
  • ModelASTStages,
  • ModelASTTreeStep,
  • ModelASTValue,
  • ModelASTArgumentList,
  • ModelASTBuildCondition,
  • ModelASTKeyValueOrMethodCallPair,
  • ModelASTMethodCall,
  • ModelASTPositionalArgumentList,
  • ModelASTWhenCondition,
  • AbstractModelASTCodeBlock,
  • Messages,
  • ModelASTAgent
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now