Skip to content
Snippets Groups Projects
Commit ef8421c9 authored by buczekp's avatar buczekp
Browse files

minor: javadoc

SVN: 20016
parent 280c078e
No related branches found
No related tags found
No related merge requests found
...@@ -33,10 +33,23 @@ public interface IManagedUiDescription extends ISerializable ...@@ -33,10 +33,23 @@ public interface IManagedUiDescription extends ISerializable
*/ */
void useTableOutput(ITableModel tableModel); void useTableOutput(ITableModel tableModel);
IManagedUiAction addAction(String name); /**
* Adds a table action with given name to actions that can be performed in the user interface
* for modification of the managed property.
*/
IManagedUiTableAction addTableAction(String name); IManagedUiTableAction addTableAction(String name);
/**
* Adds an action with given <var>name</var> to actions that can be performed in the user
* interface for modification of the managed property.
* <p>
* NOTE: currently there is only support for table actions
*/
IManagedUiAction addAction(String name);
/**
* Get all actions defined for the managed property.
*/
List<IManagedUiAction> getActions(); List<IManagedUiAction> getActions();
/** /**
......
...@@ -19,7 +19,7 @@ package ch.systemsx.cisd.openbis.generic.shared.managed_property.api; ...@@ -19,7 +19,7 @@ package ch.systemsx.cisd.openbis.generic.shared.managed_property.api;
/** /**
* The type of an entity link. * The type of an entity link.
* <p> * <p>
* <b>All methods of this enum are part of the Managed Properties API.</b> * NOTE: This enumeration is part of the Managed Properties API.
* *
* @author Kaloyan Enimanev * @author Kaloyan Enimanev
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment