代码搜索:Creating
找到约 10,000 项符合「Creating」的源代码
代码结果 10,000
www.eeworm.com/read/127767/14336236
txt e752. creating a jcheckbox component.txt
By default, the state of the checkbox is off; to change the state, see e753 Getting and Setting the State of a JCheckbox Component. Also by default, the checkbox is left-justified and vertically cente
www.eeworm.com/read/127767/14336369
txt e656. creating basic shapes.txt
Shape line = new Line2D.Float(x1, y1, x2, y2);
Shape arc = new Arc2D.Float(x, y, w, h, start, extent, type);
Shape oval = new Ellipse2D.Float(x, y, w, h);
Shape rectangle = new Rectangl
www.eeworm.com/read/127767/14336410
txt e906. creating a jtable component.txt
The following creates a table that uses an efficient underlying storage implementation. Although cell values can be changed, rows and columns cannot be added or deleted.
// Create with initial d
www.eeworm.com/read/127767/14336648
txt e801. creating a jprogressbar component.txt
A progress bar is used to visually indicate how much a task has been progressed. A progress bar can be oriented horizontally (left-to-right) or vertically (bottom-to-top). By default, the orientation
www.eeworm.com/read/127767/14336696
txt e841. creating a jdesktoppane container.txt
A desktop is a container that can only hold internal frames (JInternalFrame objects). This example creates a desktop with an internal frame.
// Create an internal frame
boolean resizable =
www.eeworm.com/read/127767/14336698
txt e768. creating a jradiobutton component.txt
// Create an action for each radio button
Action action1 = new AbstractAction("RadioButton Label1") {
// This method is called whenever the radio button is pressed,
// even if i
www.eeworm.com/read/127767/14336740
txt e023. creating a temporary file.txt
try {
// Create temp file.
File temp = File.createTempFile("pattern", ".suffix");
// Delete temp file when program exits.
temp.deleteOnExit();
www.eeworm.com/read/127767/14336787
txt e666. creating a buffered image.txt
A buffered image is a type of image whose pixels can be modified. For example, you can draw on a buffered image and then draw the resulting buffered image on the screen or save it to a file. A buffere
www.eeworm.com/read/127767/14336887
txt e794. creating a jslider component.txt
// Create a horizontal slider with min=0, max=100, value=50
JSlider slider = new JSlider();
// Create a horizontal slider with custom min and max; value is set to the middle
int m
www.eeworm.com/read/127767/14336958
txt e111. creating a proxy object.txt
public interface MyInterface {
void method();
}
public class MyInterfaceImpl implements MyInterface {
public void method() {
}
}
public clas