Ejemplo n.º 1
0
 /**
  * Set this property on the provided element.
  *
  * @param element the element
  * @param value the new property value
  * @param metadata the property metadata
  * @param visibility the property visibility
  */
 public final void setProperty(
     final Element element,
     final TRaw value,
     final Map<String, Object> metadata,
     final Visibility visibility) {
   element.setProperty(key, wrap(value), metadata, visibility);
 }
Ejemplo n.º 2
0
 /**
  * Set this property on the provided element.
  *
  * @param element the element
  * @param value the new property value
  * @param visibility the property visibility
  */
 public final void setProperty(
     final Element element, final TRaw value, final Visibility visibility) {
   element.setProperty(key, wrap(value), visibility);
 }