Change-Id: I80b73b653e97904605dc62484a7448f3bfbf7240
* @param o
* the object.
*/
+ @Override
public String key(V o) {
if (o == null) {
* the name with the desired value.
* @return the object with the key.
*/
+ @Override
public V get(String key) {
return keyObjectMap.get(key);
}
* @param removeobj
* the object to be removed.
*/
+ @Override
public void remove(V removeobj) {
final String key = objectKeyMap.get(removeobj);
/**
* Removes all objects from the mapper.
*/
+ @Override
public void removeAll() {
objectKeyMap.clear();
keyObjectMap.clear();
public class RichTextAreaDeclarativeTest
extends AbstractFieldDeclarativeTest<RichTextArea, String> {
+ @Override
public void valueDeserialization()
throws InstantiationException, IllegalAccessException {
String value = "<b>Header</b> \n<br>Some text";
testWrite(design, component);
}
+ @Override
public void readOnlyValue()
throws InstantiationException, IllegalAccessException {
String value = "<b>Header</b> \n<br>Some text";