Searched defs:services (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/print/
H A DBackgroundLookupListener.java31 * Implement this to be called back when a complete list of services is
33 * This is useful for cases where retrieving this list of services may
40 * Called once to notify that the complete list of services is
44 public void notifyServices(PrintService[] services); argument
H A DServiceDialog.java107 private PrintService[] services; field in class:ServiceDialog
135 PrintService[] services,
142 initPrintDialog(x, y, services, defaultServiceIndex,
154 PrintService[] services,
161 initPrintDialog(x, y, services, defaultServiceIndex,
170 PrintService[] services,
175 this.services = services;
179 this.psCurrent = services[defaultServiceIndex];
727 String[] psnames = new String[services
133 ServiceDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, int defaultServiceIndex, DocFlavor flavor, PrintRequestAttributeSet attributes, Dialog dialog) argument
152 ServiceDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, int defaultServiceIndex, DocFlavor flavor, PrintRequestAttributeSet attributes, Frame frame) argument
169 initPrintDialog(int x, int y, PrintService[] services, int defaultServiceIndex, DocFlavor flavor, PrintRequestAttributeSet attributes) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/services/
H A DGraphViewer.java24 package com.sun.hotspot.igv.data.services;
H A DGroupCallback.java25 package com.sun.hotspot.igv.data.services;
H A DGroupReceiver.java24 package com.sun.hotspot.igv.data.services;
H A DInputGraphProvider.java25 package com.sun.hotspot.igv.data.services;
H A DScheduler.java25 package com.sun.hotspot.igv.data.services;
H A DGroupOrganizer.java24 package com.sun.hotspot.igv.data.services;
/openjdk7/jdk/src/share/classes/javax/print/
H A DServiceUI.java48 * graphical user dialog for browsing print services looked up through the Java
56 * The dialogs are designed to work with pluggable print services though the
57 * public APIs of those print services.
92 * An application must pass in an array of print services to browse.
99 * services.
104 * validated against those supported by the services.
112 * service are ignored. As the user browses print services, attributes
122 * PrintService[] services = PrintServiceLookup.lookupPrintServices(
125 * if (services.length > 0) {
127 * services, service
154 printDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, PrintService defaultService, DocFlavor flavor, PrintRequestAttributeSet attributes) argument
[all...]
/openjdk7/langtools/test/tools/javac/6341866/
H A DT6341866.java52 static final File processorServices = services(Processor.class);
192 static File services(Class<?> service) { method in class:T6341866
193 String[] dirs = { testClasses, "META-INF", "services" };
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModel.java71 services.add(service);
76 if (servicesByName.size() != services.size()) {
84 return services;
89 services = l;
94 if (services != null) {
95 for (Service service : services) {
153 private List<Service> services = new ArrayList<Service>(); field in class:Model
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DDefinitions.java124 public Iterator<Service> services() { method in class:Definitions
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLModelImpl.java57 private final Map<QName, WSDLServiceImpl> services = new LinkedHashMap<QName, WSDLServiceImpl>(); field in class:WSDLModelImpl
101 services.put(svc.getName(), svc);
105 return services.get(name);
121 return services;
128 if(services.isEmpty())
130 return services.values().iterator().next().getName();
145 if(services.isEmpty())
147 WSDLService service = services.values().iterator().next();
168 WSDLServiceImpl service = services.get(serviceName);
245 for (WSDLServiceImpl service : services
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DProviderList.java388 // allocating the services list if we do not need the second service.
392 // list of the services we have found so far
393 private List<Service> services; field in class:ProviderList.ServiceList
414 if (services == null) {
415 services = new ArrayList<Service>(4);
416 services.add(firstService);
418 services.add(s);
426 } else if ((services != null) && (services.size() > index)) {
427 return services
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServicesSupport.java133 services = new HashMap(serializable + 1);
351 Map services = null;
356 services = (Map)serviceRequestors.get(requestor);
359 if (services == null) {
360 services = new HashMap(1);
362 serviceRequestors.put(requestor, services);
364 serviceRef = (BCSSCServiceRef)services.get(service);
369 services.put(service, serviceRef);
380 Map services = (Map)serviceRequestors.get(requestor);
382 if (services
1220 protected transient HashMap services; field in class:BeanContextServicesSupport
[all...]

Completed in 76 milliseconds