Uses of Class
org.pentaho.reporting.engine.classic.core.style.BorderStyle

Packages that use BorderStyle
org.pentaho.reporting.engine.classic.core.elementfactory Factory classes which make creating bands and elements more easier. 
org.pentaho.reporting.engine.classic.core.layout.model   
org.pentaho.reporting.engine.classic.core.style Style sheets for elements and bands. 
org.pentaho.reporting.engine.classic.core.util Common utility classes. 
 

Uses of BorderStyle in org.pentaho.reporting.engine.classic.core.elementfactory
 

Methods in org.pentaho.reporting.engine.classic.core.elementfactory that return BorderStyle
 BorderStyle ElementFactory.getBorderBottomStyle()
          Returns the defined bottom border-style for the element.
 BorderStyle ElementFactory.getBorderBreakStyle()
          Returns the defined break border-style for the element.
 BorderStyle ElementFactory.getBorderLeftStyle()
          Returns the defined left border-style for the element.
 BorderStyle ElementFactory.getBorderRightStyle()
          Returns the defined right border-style for the element.
 BorderStyle ElementFactory.getBorderStyle()
          Returns the defined global border-style for the element.
 BorderStyle ElementFactory.getBorderTopStyle()
          Returns the defined top border-style for the element.
 

Methods in org.pentaho.reporting.engine.classic.core.elementfactory with parameters of type BorderStyle
 void ElementFactory.setBorderBottomStyle(BorderStyle borderBottomStyle)
          Defines the bottom border-style for the element.
 void ElementFactory.setBorderBreakStyle(BorderStyle borderBreakStyle)
          Defines the break border-style for the element.
 void ElementFactory.setBorderLeftStyle(BorderStyle borderLeftStyle)
          Defines the left border-style for the element.
 void ElementFactory.setBorderRightStyle(BorderStyle borderRightStyle)
          Defines the right border-style for the element.
 void ElementFactory.setBorderStyle(BorderStyle borderStyle)
          Defines the global border-style for the element.
 void ElementFactory.setBorderTopStyle(BorderStyle borderTopStyle)
          Defines the top border-style for the element.
 

Uses of BorderStyle in org.pentaho.reporting.engine.classic.core.layout.model
 

Methods in org.pentaho.reporting.engine.classic.core.layout.model that return BorderStyle
 BorderStyle BorderEdge.getBorderStyle()
           
 

Constructors in org.pentaho.reporting.engine.classic.core.layout.model with parameters of type BorderStyle
BorderEdge(BorderStyle borderStyle, Color color, long width)
           
 

Uses of BorderStyle in org.pentaho.reporting.engine.classic.core.style
 

Fields in org.pentaho.reporting.engine.classic.core.style declared as BorderStyle
static BorderStyle BorderStyle.DASHED
           
static BorderStyle BorderStyle.DOT_DASH
           
static BorderStyle BorderStyle.DOT_DOT_DASH
           
static BorderStyle BorderStyle.DOTTED
           
static BorderStyle BorderStyle.DOUBLE
           
static BorderStyle BorderStyle.GROOVE
           
static BorderStyle BorderStyle.HIDDEN
           
static BorderStyle BorderStyle.INSET
           
static BorderStyle BorderStyle.NONE
           
static BorderStyle BorderStyle.OUTSET
           
static BorderStyle BorderStyle.RIDGE
           
static BorderStyle BorderStyle.SOLID
           
static BorderStyle BorderStyle.WAVE
           
 

Methods in org.pentaho.reporting.engine.classic.core.style that return BorderStyle
static BorderStyle BorderStyle.getBorderStyle(String type)
           
 

Uses of BorderStyle in org.pentaho.reporting.engine.classic.core.util
 

Methods in org.pentaho.reporting.engine.classic.core.util that return BorderStyle
static BorderStyle StrokeUtility.translateStrokeStyle(Stroke s)