|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ModifiableMarkupCapable
An interface representing a modifiable markup capable instance.
Method Summary | |
---|---|
boolean |
addMarkup(Markup aMarkup)
Adds a markup. |
boolean |
addMarkups(java.util.Set<Markup> aMarkupSet)
Adds all markups specified by the set. |
boolean |
confirmAddMarkup(Markup aMarkup)
Indicates if the specified markup may be set. |
boolean |
confirmAddMarkups(java.util.Set<Markup> aMarkupSet)
Indicates if the specified markups may be set. |
boolean |
confirmRemoveMarkup(Markup aMarkup)
Indicates if the specified markup may be removed. |
boolean |
confirmRemoveMarkups()
Indicates if all markups may be removed. |
boolean |
removeMarkup(Markup aMarkup)
Removes a markup. |
boolean |
removeMarkups()
Clears all markups. |
Methods inherited from interface com.ibm.portal.admin.MarkupCapable |
---|
getMarkups, supportsMarkup, supportsMarkup |
Method Detail |
---|
boolean addMarkup(Markup aMarkup) throws CannotModifyPropertyException
aMarkup
- markup to add; must not be null
true
if this MarkupCapable
was
changed as a result of this call
CannotModifyPropertyException
- in case the markup cannot be added for the localeboolean addMarkups(java.util.Set<Markup> aMarkupSet) throws CannotModifyPropertyException
aMarkupSet
- set with the titles to add; must contain
Markup
instances.
true
if this MarkupCapable
was
changed as a result of this call
CannotModifyPropertyException
- in case a markup cannot be added; in this case the markups
are added only partiallyboolean removeMarkup(Markup aMarkup) throws CannotModifyPropertyException
aMarkup
- markup to remove; must not be null
true
if this MarkupCapable
was
changed as a result of this call
CannotModifyPropertyException
- in case the markup cannot be removed for the localeboolean removeMarkups() throws CannotModifyPropertyException
true
if this MarkupCapable
was
changed as a result of this call
CannotModifyPropertyException
- in case a markup cannot be removed; in this case the markups
are removed only partiallyboolean confirmAddMarkup(Markup aMarkup)
aMarkup
- markup for which to indicate if it may be set; must not be
null
true
if the specified markup may be set,
false
otherwiseboolean confirmAddMarkups(java.util.Set<Markup> aMarkupSet)
aMarkupSet
- set of Markup
s for which to
indicate if they may be set; must not be null
true
if the specified markups may be set,
false
otherwiseboolean confirmRemoveMarkup(Markup aMarkup)
aMarkup
- markup for which to indicate if it may be removed; must not be
null
true
if the markup may be removed,
false
otherwiseboolean confirmRemoveMarkups()
true
if all markups may be removed,
false
otherwise
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |