Searched defs:id (Results 151 - 175 of 770) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/tools/attach/
H A DVirtualMachineDescriptor.java61 private String id; field in class:VirtualMachineDescriptor
70 * @param id The virtual machine identifier.
76 public VirtualMachineDescriptor(AttachProvider provider, String id, String displayName) { argument
80 if (id == null) {
87 this.id = id;
99 * VirtualMachineDescriptor}(provider,  id,  id);
107 * @param id The virtual machine identifier.
110 * If <tt>provider</tt> or <tt>id</t
112 VirtualMachineDescriptor(AttachProvider provider, String id) argument
130 public String id() { method in class:VirtualMachineDescriptor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/spi/
H A DAttachProvider.java128 * @param id
149 * If <code>id</code> is <code>null</code>
151 public abstract VirtualMachine attachVirtualMachine(String id) argument
193 return attachVirtualMachine(vmd.id());
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaObjectRef.java45 private long id; field in class:JavaObjectRef
47 public JavaObjectRef(long id) { argument
48 this.id = id;
52 return id;
67 return new JavaLong(id);
69 if (id == 0) {
72 JavaThing result = snapshot.findThing(id);
75 String msg = "WARNING: Failed to resolve object id "
76 + Misc.toHex(id);
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DComponentEvent.java56 * An unspecified behavior will be caused if the {@code id} parameter
111 * @param id An integer indicating the type of event.
118 public ComponentEvent(Component source, int id) { argument
119 super(source, id);
145 switch(id) {
H A DContainerEvent.java49 * An unspecified behavior will be caused if the {@code id} parameter
105 * @param id An integer indicating the type of event.
114 public ContainerEvent(Component source, int id, Component child) { argument
115 super(source, id);
147 switch(id) {
H A DFocusEvent.java54 * An unspecified behavior will be caused if the {@code id} parameter
133 * @param id An integer indicating the type of event.
147 public FocusEvent(Component source, int id, boolean temporary, argument
149 super(source, id);
162 * @param id An integer indicating the type of event.
172 public FocusEvent(Component source, int id, boolean temporary) { argument
173 this(source, id, temporary, null);
184 * @param id An integer indicating the type of event.
191 public FocusEvent(Component source, int id) { argument
192 this(source, id, fals
[all...]
H A DPaintEvent.java40 * An unspecified behavior will be caused if the {@code id} parameter
50 * Marks the first integer id for the range of paint event ids.
55 * Marks the last integer id for the range of paint event ids.
94 * @param id The integer that identifies the event type.
103 public PaintEvent(Component source, int id, Rectangle updateRect) { argument
104 super(source, id);
127 switch(id) {
H A DTextEvent.java42 * An unspecified behavior will be caused if the {@code id} parameter
67 * This event id indicates that object's text changed.
84 * @param id An integer that identifies the event type.
91 public TextEvent(Object source, int id) { argument
92 super(source, id);
104 switch(id) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputNode.java32 private int id; field in class:InputNode
36 setId(n.id);
39 public InputNode(int id) { argument
40 setId(id);
43 public void setId(int id) { argument
44 this.id = id;
45 getProperties().setProperty("id", "" + id);
49 return id;
[all...]
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DPublicMapping.java73 String id = ln.substring(i, j);
79 put(id, baseStr + where);
88 public void put(String id, String str) { argument
90 // System.err.println("ADD = '" + id + "' = " + str);
91 tab.put(id, str);
104 public String get(String id) { argument
105 // System.err.println(" id = "+id);
106 return (String) tab.get(id);
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceBackend.hpp39 static bool is_event_enabled(TraceEventId id) { argument
/openjdk7/hotspot/test/compiler/6912517/
H A DTest.java45 public Test(int id) argument
48 myThread.setName("Runner: " + id);
70 for (int id = 0; id < 20; id++) {
71 System.out.println("Starting thread: " + id);
72 Test bug = new Test(id);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DNoSuchEntityException.java31 * An exception signalling that an entity with the given name/id does not exist.
43 public NoSuchEntityException(String id) { argument
44 super("entity.notFoundByID", id);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DIDResolver.java111 * @param id
118 public abstract void bind( String id, Object obj ) throws SAXException; argument
147 * @param id
159 public abstract Callable<?> resolve( String id, Class targetType ) throws SAXException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DAnnotated.java41 public Annotated id(String value); method in interface:Annotated
H A DAnnotation.java45 public Annotation id(String value); method in interface:Annotation
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/policy/
H A DModelUnmarshaller.java57 protected PolicySourceModel createSourceModel(NamespaceVersion nsVersion, String id, String name) { argument
58 return SourceModel.createSourceModel(nsVersion, id, name);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DCmdIDList.cpp64 // Assign an id to the object. Recycle the first free entry from the
73 // many items simultaneously in existence, we have an id
97 // Return the object associated with this id..
98 AwtObject* AwtCmdIDList::Lookup(UINT id) argument
101 DASSERT(id < m_capacity);
102 if (m_array[id].next_free_index <= ARRAY_MAXIMUM_SIZE) {
105 return m_array[id].obj;
108 // Return this id to the head of the free list.
109 void AwtCmdIDList::Remove(UINT id)
112 DASSERT(id < m_capacit
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DUnloadEventTarg.java41 static void loadup(String id) throws ClassNotFoundException { argument
42 ClassLoaderTarg cl = new ClassLoaderTarg(id);
67 static void classLoaderFinalized(String id) { argument
68 System.err.println("finalizing ClassLoaderTarg - " + id);
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest6528714.java35 test(Concrete.class, "id", Integer.class);
50 private Integer id; field in class:Test6528714.Concrete
53 return this.id;
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_awt_GridBagLayout.java89 private static void update(GridBagLayout layout, String id, int x, int y) { argument
93 layout.addLayoutComponent(new JLabel(id), gbc);
97 private static GridBagConstraints getConstraints(GridBagLayout layout, String id) {
98 return (layout == null) ? null : ((MyGridBagLayout) layout).getConstraints(id);
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DBinaryTree.java80 public int id; field in class:BinaryTreeTest
86 id = count++;
98 System.err.println("node " + id);
114 if (id != other.id) {
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DStarter.java29 private String id; field in class:Starter
88 private Starter(String id, DelegatingLoader dl, String startClass) { argument
89 this.id = id;
95 log("Spawned thread " + id + " running");
103 log("Thread " + id + " terminating");
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkAnnotations/
H A DCheckAnnotations.java244 (ActivationID id, MarshalledObject mo)
248 super(id,0);
243 CheckAnnotations(ActivationID id, MarshalledObject mo) argument
/openjdk7/jdk/test/java/rmi/activation/Activatable/nestedActivate/
H A DNestedActivate.java50 public NestedActivate(ActivationID id, MarshalledObject mobj) argument
53 super(id, 0);

Completed in 155 milliseconds

1234567891011>>