SPT Core API

com.sptci.epng.annotation
Annotation Type EditableTreeProperties


@Documented
@Inherited
@Retention(value=RUNTIME)
@Target(value={FIELD,TYPE})
public @interface EditableTreeProperties

Annotation type used to indicate the class of the ActionListener that are added to the EditableTree.

© Copyright 2007 Sans Pareil Technologies, Inc.

Version:
$Id: EditableTreeProperties.java 4553 2008-12-24 10:34:16Z rakesh $
Author:
Rakesh Vidyadharan 2007-05-05

Required Element Summary
 String delete
          The fully qualified name of the ActionListener to use to delete a specified node.
 String propertyBase
          The base name of the property key to use to read localised string values.
 String save
          The fully qualified name of the ActionListener to use to save a new child being added to a node.
 

Element Detail

save

public abstract String save
The fully qualified name of the ActionListener to use to save a new child being added to a node.

Returns:
The name of the save listener.

delete

public abstract String delete
The fully qualified name of the ActionListener to use to delete a specified node.

Returns:
The name of the delete listener.

propertyBase

public abstract String propertyBase
The base name of the property key to use to read localised string values.

Returns:
The base name of the property.

SPT Core API