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

gw.lang.parser.IBlockClass Maven / Gradle / Ivy

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

package gw.lang.parser;

import gw.lang.parser.expressions.IBlockExpression;
import gw.lang.reflect.IType;
import gw.lang.reflect.gs.IGosuClass;

public interface IBlockClass extends IGosuClass
{
  public static final String INVOKE_METHOD_NAME = "invoke";
  public static final String INVOKE_WITH_ARGS_METHOD_NAME = "invokeWithArgs";

  public IBlockExpression getBlock();

  IType getBlockType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy