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

editor.ArrayElementNode Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
/*
 *
 *  Copyright 2010 Guidewire Software, Inc.
 *
 */
package editor;

import gw.lang.reflect.IType;


/**
 *
 */
public class ArrayElementNode extends BeanInfoNode
{
  private String _strValue;

  /**
   *
   */
  public ArrayElementNode( IType type, int iSubscript )
  {
    super( type );
    setDisplayName( "[" + iSubscript + "]" );
  }

  /**
   * @return
   */
  public String getValue()
  {
    return _strValue;
  }

  public void setValue( String strValue )
  {
    _strValue = strValue;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy