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

gw.lang.parser.IScriptPartId 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.reflect.IType;
import gw.lang.reflect.gs.IGosuClass;

public abstract class IScriptPartId
{
  /**
   * @return The type that contains this part.
   */
  public abstract IType getContainingType();

  /**
   * @return The name of the type that contains this part.
   */
  public abstract String getContainingTypeName();

  /**
   * @return An id that distinguishes this part from other parts
   *         in the containing type.
   */
  public abstract String getId();

  public abstract String toString();

  public abstract void setRuntimeType( IGosuClass runtimeType );
  public abstract IGosuClass getRuntimeType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy