Uses of Class
java.beans.ConstructorProperties
-
Packages that use ConstructorProperties 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.awt.geom 提供Java 2D类,用于定义和执行与二维几何体相关的对象的操作。java.beans 包含与开发 bean相关的类 - 基于JavaBeans™体系结构的组件。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.border 提供用于在Swing组件周围绘制专用边框的类和接口。javax.swing.plaf 提供一个接口和许多抽象类,Swing使用它们来提供其可插入的外观功能。javax.swing.tree 提供用于处理javax.swing.JTree
类和接口。 -
-
Uses of ConstructorProperties in java.awt
Constructors in java.awt with annotations of type ConstructorProperties 构造器 描述 BasicStroke(float width, int cap, int join, float miterlimit, float[] dash, float dash_phase)
构造具有指定属性的新BasicStroke
。Color(int r, int g, int b, int a)
使用指定的红色,绿色,蓝色和alpha值(范围为0 - 255)创建sRGB颜色。Cursor(int type)
创建具有指定类型的新游标对象。GradientPaint(Point2D pt1, Color color1, Point2D pt2, Color color2, boolean cyclic)
根据boolean
参数构造循环或非循环GradientPaint
对象。LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors, MultipleGradientPaint.CycleMethod cycleMethod, MultipleGradientPaint.ColorSpaceType colorSpace, AffineTransform gradientTransform)
构造一个LinearGradientPaint
。RadialGradientPaint(Point2D center, float radius, Point2D focus, float[] fractions, Color[] colors, MultipleGradientPaint.CycleMethod cycleMethod, MultipleGradientPaint.ColorSpaceType colorSpace, AffineTransform gradientTransform)
构造一个RadialGradientPaint
。ScrollPane(int scrollbarDisplayPolicy)
创建一个新的scrollpane容器。 -
Uses of ConstructorProperties in java.awt.geom
Constructors in java.awt.geom with annotations of type ConstructorProperties 构造器 描述 AffineTransform(float m00, float m10, float m01, float m11, float m02, float m12)
从6个浮点值构造新的AffineTransform
,表示3x3变换矩阵的6个可指定条目。 -
Uses of ConstructorProperties in java.beans
Constructors in java.beans with annotations of type ConstructorProperties 构造器 描述 EventHandler(Object target, String action, String eventPropertyName, String listenerMethodName)
创建一个新的EventHandler
对象; 您通常使用create
方法之一而不是直接调用此构造函数。Expression(Object target, String methodName, Object[] arguments)
为指定的目标对象创建一个新的Expression
对象,以调用由名称和参数数组指定的方法。Statement(Object target, String methodName, Object[] arguments)
为指定的目标对象创建一个新的Statement
对象,以调用由名称和参数数组指定的方法。 -
Uses of ConstructorProperties in javax.swing
Constructors in javax.swing with annotations of type ConstructorProperties 构造器 描述 BoxLayout(Container target, int axis)
创建一个布局管理器,它将沿给定轴布置组件。DefaultCellEditor(JTextField textField)
构造一个使用文本字段的DefaultCellEditor
。Filler(Dimension min, Dimension pref, Dimension max)
用于创建具有给定大小范围的形状的构造函数。ImageIcon(String filename)
从指定的文件创建ImageIcon。JButton(String text)
创建一个带文本的按钮。JSplitPane(int newOrientation)
创建使用指定方向配置的新JSplitPane
。JTree(TreeModel newModel)
返回显示根节点的JTree
实例 - 使用指定的数据模型创建树。OverlayLayout(Container target)
构造一个布局管理器,执行子项的叠加排列。 -
Uses of ConstructorProperties in javax.swing.border
Constructors in javax.swing.border with annotations of type ConstructorProperties 构造器 描述 BevelBorder(int bevelType, Color highlightOuterColor, Color highlightInnerColor, Color shadowOuterColor, Color shadowInnerColor)
使用指定的类型,高光和阴影颜色创建斜角边框。CompoundBorder(Border outsideBorder, Border insideBorder)
使用指定的外边框和内边框创建复合边框。EmptyBorder(Insets borderInsets)
使用指定的insets创建空边框。EtchedBorder(int etchType, Color highlight, Color shadow)
使用指定的蚀刻类型,高光和阴影颜色创建蚀刻边框。LineBorder(Color color, int thickness, boolean roundedCorners)
创建具有指定颜色,粗细和角形的线条边框。SoftBevelBorder(int bevelType, Color highlightOuterColor, Color highlightInnerColor, Color shadowOuterColor, Color shadowInnerColor)
创建具有指定类型的斜角边框,突出显示阴影颜色。StrokeBorder(BasicStroke stroke, Paint paint)
创建指定的stroke
和paint
。TitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor)
使用指定的边框,标题,标题对齐,标题位置,标题字体和标题颜色创建TitledBorder实例。 -
Uses of ConstructorProperties in javax.swing.plaf
Constructors in javax.swing.plaf with annotations of type ConstructorProperties 构造器 描述 BevelBorderUIResource(int bevelType, Color highlightOuter, Color highlightInner, Color shadowOuter, Color shadowInner)
构造一个BevelBorderUIResource
。ColorUIResource(int r, int g, int b)
构造一个ColorUIResource
。CompoundBorderUIResource(Border outsideBorder, Border insideBorder)
构造一个CompoundBorderUIResource
。EmptyBorderUIResource(Insets insets)
构造一个EmptyBorderUIResource
。EtchedBorderUIResource(int etchType, Color highlight, Color shadow)
构造一个EtchedBorderUIResource
。LineBorderUIResource(Color color, int thickness)
构造一个LineBorderUIResource
。TitledBorderUIResource(Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor)
构造一个TitledBorderUIResource
。 -
Uses of ConstructorProperties in javax.swing.tree
Constructors in javax.swing.tree with annotations of type ConstructorProperties 构造器 描述 DefaultTreeModel(TreeNode root)
创建一个树,任何节点都可以在其中生成子节点。TreePath(Object[] path)
Creates aTreePath
from an array.
-