sferyx.administration.renderers.extensions
Interface BrowsableComponent


public interface BrowsableComponent


Method Summary
 java.lang.String getResultingURL()
          This method should return the value to be inserted as URL for inserting hyperlinks or images.
 boolean isActionCancelled()
          This method returns whether the user have approved or cancelled the choice.
 void show()
          This method should be used in order to display the custom browse component when inserting links or images.
 

Method Detail

show

void show()
This method should be used in order to display the custom browse component when inserting links or images. The best solution is to use a modal dialog which returns a value through getResultingURL for inserting url for hyperlinks and/or images


getResultingURL

java.lang.String getResultingURL()
This method should return the value to be inserted as URL for inserting hyperlinks or images.


isActionCancelled

boolean isActionCancelled()
This method returns whether the user have approved or cancelled the choice. Easy way to not change the current value. Handle this as you like.