Uses of Interface
java.awt.Paint
-
Packages that use Paint 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.border 提供用于在Swing组件周围绘制专用边框的类和接口。javax.swing.plaf 提供一个接口和许多抽象类,Swing使用它们来提供其可插入的外观功能。 -
-
Uses of Paint in java.awt
Classes in java.awt that implement Paint 变量和类型 类 描述 classColorColor类用于封装默认sRGB颜色空间中的颜色或由ColorSpace标识的任意颜色空间中的颜色。classGradientPaintGradientPaint类提供了一种使用线性颜色渐变图案填充Shape的方法。classLinearGradientPaintLinearGradientPaint类提供了一种使用线性颜色渐变图案填充Shape的方法。classMultipleGradientPaint这是Paints的超类,它使用多色渐变来填充栅格。classRadialGradientPaintRadialGradientPaint类提供了一种使用圆形径向颜色渐变图案填充形状的方法。classSystemColor用于封装表示系统上本机GUI对象颜色的符号颜色的类。classTexturePaintTexturePaint类提供了一种使用指定为BufferedImage的纹理填充Shape的方法 。Methods in java.awt that return Paint 变量和类型 方法 描述 abstract PaintGraphics2D. getPaint()返回Graphics2D上下文的当前Paint。Methods in java.awt with parameters of type Paint 变量和类型 方法 描述 abstract voidGraphics2D. setPaint(Paint paint)设置Graphics2D上下文的Paint属性。 -
Uses of Paint in javax.swing
Methods in javax.swing with parameters of type Paint 变量和类型 方法 描述 static BorderBorderFactory. createDashedBorder(Paint paint)创建指定的paint的虚线边框。static BorderBorderFactory. createDashedBorder(Paint paint, float length, float spacing)创建指定的paint的虚线边框,相对length,相对spacing。static BorderBorderFactory. createDashedBorder(Paint paint, float thickness, float length, float spacing, boolean rounded)创建指定的paint,thickness,相对length和相对spacing的虚线边框。static BorderBorderFactory. createStrokeBorder(BasicStroke stroke, Paint paint)创建指定的stroke和paint。 -
Uses of Paint in javax.swing.border
Methods in javax.swing.border that return Paint 变量和类型 方法 描述 PaintStrokeBorder. getPaint()返回用于在边框渲染期间生成颜色的Paint对象。Constructors in javax.swing.border with parameters of type Paint 构造器 描述 StrokeBorder(BasicStroke stroke, Paint paint)创建指定的stroke和paint。 -
Uses of Paint in javax.swing.plaf
Classes in javax.swing.plaf that implement Paint 变量和类型 类 描述 classColorUIResourceColor的子类,实现UIResource。
-