站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc (Current Development Version)

Uses of Interface org.netbeans.api.visual.border.Border (Visual Library API) - NetBeans API Javadoc (Current Development Version)

org.netbeans.api.visual 2.2

Uses of Interface
org.netbeans.api.visual.border.Border

Packages that use Border
org.netbeans.api.visual.border This package contains Border interface which is used for supplying a border graphics for a widget. 
org.netbeans.api.visual.laf This package contains LookFeel class with style definition for colors and borders. 
org.netbeans.api.visual.vmd This package contains a VMD visualization style. 
org.netbeans.api.visual.widget This package contains Widget class. 
 

Uses of Border in org.netbeans.api.visual.border
 

Methods in org.netbeans.api.visual.border that return Border
static Border BorderFactory.createBevelBorder(boolean raised)
          Creates a bevel border.
static Border BorderFactory.createBevelBorder(boolean raised, Color color)
          Creates a bevel border.
static Border BorderFactory.createCompositeBorder(Border... borders)
          Creates a composite border that consists of a list of specified borders - one embedded to another.
static Border BorderFactory.createDashedBorder(Color color, int width, int height)
          Creates a resize border rendered with dashed stroke.
static Border BorderFactory.createDashedBorder(Color color, int width, int height, boolean squares)
          Creates a resize border rendered with dashed stroke.
static Border BorderFactory.createEmptyBorder()
          Creates an default empty border with 0px layout.
static Border BorderFactory.createEmptyBorder(int thickness)
          Creates an empty border with specific thickness.
static Border BorderFactory.createEmptyBorder(int horizontal, int vertical)
          Creates an empty border with specific thickness.
static Border BorderFactory.createEmptyBorder(int top, int left, int bottom, int right)
          Creates an empty border with specific thickness.
static Border BorderFactory.createFancyDashedBorder(Color color, int width, int height)
          Deprecated. use createDashedBorder (color, width, height, true) method instead
static Border BorderFactory.createImageBorder(Insets insets, Image image)
          Creates an image layout.
static Border BorderFactory.createImageBorder(Insets borderInsets, Insets imageInsets, Image image)
          Creates an image layout.
static Border BorderFactory.createLineBorder()
          Creates a line border with default style.
static Border BorderFactory.createLineBorder(int thickness)
          Creates a line border with specific thickness.
static Border BorderFactory.createLineBorder(int thickness, Color color)
          Creates a line border with specific thickness and color.
static Border BorderFactory.createLineBorder(int top, int left, int bottom, int right, Color color)
          Creates a line border with specific insets and color.
static Border BorderFactory.createOpaqueBorder(int top, int left, int bottom, int right)
          Creates an opaque border with specific thickness.
static Border BorderFactory.createResizeBorder(int thickness)
          Creates a resize border.
static Border BorderFactory.createResizeBorder(int thickness, Color color, boolean outer)
          Creates a resize border.
static Border BorderFactory.createRoundedBorder(int arcWidth, int arcHeight, Color fillColor, Color drawColor)
          Creates an rounded-rectangle border with a specified style.
static Border BorderFactory.createRoundedBorder(int arcWidth, int arcHeight, int insetWidth, int insetHeight, Color fillColor, Color drawColor)
          Creates an rounded-rectangle border with a specified style.
static Border BorderFactory.createSwingBorder(Scene scene, Border border)
          Creates a layout from a Swing border.
 

Methods in org.netbeans.api.visual.border with parameters of type Border
static Border BorderFactory.createCompositeBorder(Border... borders)
          Creates a composite border that consists of a list of specified borders - one embedded to another.
static boolean BorderSupport.isOuterResizeBorder(Border border)
          Returns whether a resize border is outer.
 

Uses of Border in org.netbeans.api.visual.laf
 

Methods in org.netbeans.api.visual.laf that return Border
abstract  Border LookFeel.getBorder(ObjectState state)
          Returns a border for a specific state.
abstract  Border LookFeel.getMiniBorder(ObjectState state)
          Returns a minimalistic version of border for a specific state.
 

Uses of Border in org.netbeans.api.visual.vmd
 

Methods in org.netbeans.api.visual.vmd that return Border
static Border VMDFactory.createVMDNodeBorder()
          Creates a border used by VMD node.
 

Uses of Border in org.netbeans.api.visual.widget
 

Methods in org.netbeans.api.visual.widget that return Border
 Border Widget.getBorder()
          Returns the border of the widget.
 

Methods in org.netbeans.api.visual.widget with parameters of type Border
 void Widget.setBorder(Border border)
          Sets the border of the widget.
 


org.netbeans.api.visual 2.2

Built on May 28 2007.  |  Portions Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.