All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.lang.parser.expressions.IVarStatement Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.lang.parser.expressions;

import gw.lang.parser.IDynamicPropertySymbol;
import gw.lang.parser.IExpression;
import gw.lang.parser.IHasType;
import gw.lang.parser.IParsedElementWithAtLeastOneDeclaration;
import gw.lang.parser.IScriptPartId;
import gw.lang.parser.IStatement;
import gw.lang.parser.ISymbol;
import gw.lang.reflect.IModifierInfo;
import gw.lang.reflect.IType;

public interface IVarStatement extends IStatement, IParsedElementWithAtLeastOneDeclaration, IHasType
{
  String getIdentifierName();

  ISymbol getSymbol();

  String getPropertyName();

  ITypeLiteralExpression getTypeLiteral();

  IExpression getAsExpression();

  boolean hasProperty();

  IModifierInfo getModifierInfo();

  int getModifiers();

  boolean isStatic();

  boolean isPrivate();

  boolean isInternal();

  boolean isProtected();

  boolean isPublic();

  boolean isFinal();

  boolean isAbstract();

  boolean isEnumConstant();

  IType getType();

  IScriptPartId getScriptPart();

  boolean getHasInitializer();

  String getFullDescription();

  void setSymbol( ISymbol symbol );

  public int getPropertyNameOffset();

  boolean isFieldDeclaration();

  IDynamicPropertySymbol getProperty();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy