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 Modifier and Type Class 描述 classColorColor类用于将默认的sRGB颜色空间或由ColorSpace标识的任意颜色空间中的颜色进行封装 。classGradientPaintGradientPaint课程提供了一种使用线性颜色渐变模式填充Shape的方法。classLinearGradientPaintLinearGradientPaint课程提供了一种填充Shape线性颜色渐变模式的方式。classMultipleGradientPaint这是Paints的超类,它使用多色渐变填充其栅格。classRadialGradientPaintRadialGradientPaint类提供了一种填充圆形径向颜色渐变图案的形状的方法。classSystemColor封装代表系统上本地GUI对象颜色的符号颜色的类。classTexturePaintTexturePaint课程提供了一种填充Shape的方式 ,其纹理被指定为BufferedImage。Methods in java.awt that return Paint Modifier and Type 方法 描述 abstract PaintGraphics2D. getPaint()返回当前Paint的的Graphics2D环境。Methods in java.awt with parameters of type Paint Modifier and Type 方法 描述 abstract voidGraphics2D. setPaint(Paint paint)为Graphics2D上下文设置Paint属性。 -
Uses of Paint in javax.swing
Methods in javax.swing with parameters of type Paint Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 PaintStrokeBorder. getPaint()返回在边框渲染期间用于生成颜色的Paint对象。Constructors in javax.swing.border with parameters of type Paint Constructor 描述 StrokeBorder(BasicStroke stroke, Paint paint)创建指定的边框stroke和paint。 -
Uses of Paint in javax.swing.plaf
Classes in javax.swing.plaf that implement Paint Modifier and Type Class 描述 classColorUIResource实现UIResource的Color子类。
-