代码搜索:Creating

找到约 10,000 项符合「Creating」的源代码

代码结果 10,000
www.eeworm.com/read/127767/14336077

txt e296. creating an object type in an oracle database.txt

In Oracle, you can define a composite data structure called an OBJECT, which consists of one or more basic types. For example, you could define an object called book with a title (VARCHAR) and an pric
www.eeworm.com/read/127767/14336180

txt e182. creating a shared file lock on a file.txt

By default, a file lock is exclusive, which means that once acquired, no other access is permitted. A shared file lock allows other shared locks on the file (but no exclusive locks). Note: Some plat
www.eeworm.com/read/127767/14336366

txt e657. creating a shape using lines and curves.txt

GeneralPath shape = new GeneralPath(); shape.moveTo(x, y); shape.lineTo(x, y); shape.quadTo(controlPointX, controlPointY, x, y); shape.curveTo(controlPointX1, controlPointY1, contr
www.eeworm.com/read/127767/14336592

txt e117. creating an object using a constructor object.txt

This example creates a new Point object from the constructor Point(int,int). try { java.awt.Point obj = (java.awt.Point)con.newInstance( new Object[]{new Integer(123), new
www.eeworm.com/read/127767/14336689

txt e374. creating a date object for a particular date.txt

Calendar xmas = new GregorianCalendar(1998, Calendar.DECEMBER, 25); Date date = xmas.getTime();
www.eeworm.com/read/127767/14336694

txt e745. creating a multiline label for a jbutton component.txt

A button label can show simple HTML tags when surrounded by the tags and . This example shows how to create multiple lines by using the tag. See the javax.swing.text.html.HTML class
www.eeworm.com/read/127767/14336732

txt e588. creating a shape from a stroked shape.txt

float strokeThickness = 5.0f; BasicStroke stroke = new BasicStroke(strokeThickness); Shape newShape = stroke.createStrokedShape(shape);
www.eeworm.com/read/127767/14336937

txt e811. creating a popup menu with nested menus.txt

final JPopupMenu popupMenu = new JPopupMenu(); // Create a submenu with items JMenu submenu = new JMenu("SubMenu1"); submenu.add(action1); submenu.add(action2); //
www.eeworm.com/read/127767/14337192

txt e472. creating an initial context to the naming service.txt

This example uses the JNDI/COS naming service provider to connect to the local tnameserv. String url = "iiop://localhost/"; Hashtable env = new Hashtable(); env.put(Context.INITIAL_CON
www.eeworm.com/read/127767/14337275

txt e1002. creating a custom editing command for a jtextcomponent.txt

This example demonstrates how to implement an editing command. There are two steps when creating a custom command. The first is to create an action object that executes the desired functionality and t