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 描述 class
Color
Color
类用于将默认的sRGB颜色空间或由ColorSpace
标识的任意颜色空间中的颜色进行封装 。class
GradientPaint
GradientPaint
课程提供了一种使用线性颜色渐变模式填充Shape
的方法。class
LinearGradientPaint
LinearGradientPaint
课程提供了一种填充Shape
线性颜色渐变模式的方式。class
MultipleGradientPaint
这是Paints的超类,它使用多色渐变填充其栅格。class
RadialGradientPaint
RadialGradientPaint
类提供了一种填充圆形径向颜色渐变图案的形状的方法。class
SystemColor
封装代表系统上本地GUI对象颜色的符号颜色的类。class
TexturePaint
TexturePaint
课程提供了一种填充Shape
的方式 ,其纹理被指定为BufferedImage
。Methods in java.awt that return Paint Modifier and Type 方法 描述 abstract Paint
Graphics2D. getPaint()
返回当前Paint
的的Graphics2D
环境。Methods in java.awt with parameters of type Paint Modifier and Type 方法 描述 abstract void
Graphics2D. setPaint(Paint paint)
为Graphics2D
上下文设置Paint
属性。 -
Uses of Paint in javax.swing
Methods in javax.swing with parameters of type Paint Modifier and Type 方法 描述 static Border
BorderFactory. createDashedBorder(Paint paint)
创建指定的paint
的虚线边框。static Border
BorderFactory. createDashedBorder(Paint paint, float length, float spacing)
创建指定的paint
,相对length
和相对spacing
的虚线边框。static Border
BorderFactory. createDashedBorder(Paint paint, float thickness, float length, float spacing, boolean rounded)
创建指定的paint
,thickness
,相对length
和相对spacing
的虚线边框。static Border
BorderFactory. 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 方法 描述 Paint
StrokeBorder. 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 描述 class
ColorUIResource
实现UIResource的Color子类。
-