Ejemplo n.º 1
0
 /** @brief Set visual style. */
 public void setContentStyle(int style) {
   PDEConstants.PDEContentStyle contentStyle;
   try {
     contentStyle = PDEConstants.PDEContentStyle.values()[style];
   } catch (Exception e) {
     contentStyle = PDEConstants.PDEContentStyle.PDEContentStyleFlat;
   }
   mVideo.setElementContentStyle(contentStyle);
 }
Ejemplo n.º 2
0
 /** @brief Set visual style. */
 public void setContentStyle(PDEConstants.PDEContentStyle style) {
   mVideo.setElementContentStyle(style);
 }