Searched refs:Control (Results 1 - 25 of 86) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapContext.java162 * A <tt>Control[]</tt> array
165 * although it may keep references to the individual <tt>Control</tt> objects
167 * A <tt>Control[]</tt> array returned by any method is immutable, and may
175 * @see LdapReferralException#getReferralContext(java.util.Hashtable,javax.naming.ldap.Control[])
219 public LdapContext newInstance(Control[] requestControls)
250 public void reconnect(Control[] connCtls) throws NamingException;
263 public Control[] getConnectControls() throws NamingException;
290 public void setRequestControls(Control[] requestControls)
305 public Control[] getRequestControls() throws NamingException;
332 public Control[] getResponseControl
[all...]
H A DHasControls.java47 * Control[] entryCtls = ((HasControls)entry).getControls();
63 * Retrieves an array of <tt>Control</tt>s from the object that
66 * @return A possibly null array of <tt>Control</tt> objects.
69 public Control[] getControls() throws NamingException;
H A DControl.java52 public interface Control extends java.io.Serializable { interface in inherits:java.io.Serializable
H A DInitialLdapContext.java133 Control[] connCtls)
145 Control[] copy = new Control[connCtls.length];
186 public LdapContext newInstance(Control[] reqCtls)
191 public void reconnect(Control[] connCtls) throws NamingException {
195 public Control[] getConnectControls() throws NamingException {
199 public void setRequestControls(Control[] requestControls)
204 public Control[] getRequestControls() throws NamingException {
208 public Control[] getResponseControls() throws NamingException {
H A DControlFactory.java49 * @see Control
89 * @return A possibly null Control.
95 public abstract Control getControlInstance(Control ctl) throws NamingException;
134 public static Control getControlInstance(Control ctl, Context ctx,
148 Control answer = null;
H A DBasicControl.java29 * This class provides a basic implementation of the <tt>Control</tt>
30 * interface. It represents an LDAPv3 Control as defined in
36 public class BasicControl implements Control {
H A DLdapReferralException.java40 * A <tt>Control[]</tt> array passed as a parameter to
43 * although it may keep references to the individual <tt>Control</tt> objects
158 Control[] reqCtls)
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBindingWithControls.java32 private Control[] controls;
34 public BindingWithControls(String name, Object obj, Control[] controls) {
39 public Control[] getControls() throws NamingException {
H A DNameClassPairWithControls.java32 private Control[] controls;
35 Control[] controls) {
40 public Control[] getControls() throws NamingException {
H A DSearchResultWithControls.java33 private Control[] controls;
36 boolean isRelative, Control[] controls) {
42 public Control[] getControls() throws NamingException {
H A DUnsolicitedResponseImpl.java30 import javax.naming.ldap.Control;
42 private Control[] controls;
45 int status, String msg, String matchedDN, Control[] controls) {
109 public Control[] getControls() throws NamingException {
H A DClientId.java30 import javax.naming.ldap.Control;
60 final private Control[] bindCtls;
72 Control[] bindCtls, OutputStream trace, String socketFactory) {
77 this.bindCtls = (bindCtls != null ? (Control[]) bindCtls.clone() : null);
140 private static int hashCodeControls(Control[] c) {
152 private static boolean equalsControls(Control[] a, Control[] b) {
206 private static String toStringControls(Control[] ctls) {
H A DDefaultResponseControlFactory.java73 public Control getControlInstance(Control ctl)
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DCompoundControl.java31 * a <code>Control</code>.
36 public abstract class CompoundControl extends Control {
48 private Control[] controls;
61 protected CompoundControl(Type type, Control[] memberControls) {
76 public Control[] getMemberControls() {
78 Control[] localArray = new Control[controls.length];
108 return new String(getType() + " Control containing " + buf + " Controls.");
123 public static class Type extends Control.Type {
H A DControl.java32 * argument to a {@link Line#getControl(Control.Type) getControl} method.
44 public abstract class Control { class
59 * Constructs a Control with the specified type.
62 protected Control(Type type) { method in class:Control
82 * @return a String representation of the Control.
85 return new String(getType() + " Control");
146 } // class Control
H A DLine.java36 * base <code>{@link Control}</code> class.
164 public Control[] getControls();
173 public boolean isControlSupported(Control.Type control);
185 * @see #isControlSupported(Control.Type control)
187 public Control getControl(Control.Type control);
H A DBooleanControl.java38 * As with other <code>{@link Control}</code> subclasses, a method is
45 public abstract class BooleanControl extends Control {
160 public static class Type extends Control.Type {
H A DEnumControl.java52 public abstract class EnumControl extends Control {
187 public static class Type extends Control.Type {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DTMSchema.java64 public static enum Control { enum in class:TMSchema
88 MENU (Control.MENU, 0), // Special case, not in native
89 MP_BARBACKGROUND (Control.MENU, 7),
90 MP_BARITEM (Control.MENU, 8),
91 MP_POPUPBACKGROUND (Control.MENU, 9),
92 MP_POPUPBORDERS (Control.MENU, 10),
93 MP_POPUPCHECK (Control.MENU, 11),
94 MP_POPUPCHECKBACKGROUND (Control.MENU, 12),
95 MP_POPUPGUTTER (Control.MENU, 13),
96 MP_POPUPITEM (Control
[all...]
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DBadControlsTest.java26 * @summary Test if ResourceBundle.getBundle detects bad Control implementations.
31 import static java.util.ResourceBundle.Control.*;
35 ResourceBundle.Control control;
37 control = new ResourceBundle.Control() {
44 control = new ResourceBundle.Control() {
51 control = new ResourceBundle.Control() {
58 control = new ResourceBundle.Control() {
71 control = new ResourceBundle.Control() {
79 control = new ResourceBundle.Control() {
93 // null Control test
[all...]
H A DControlFactoryTest.java26 * @summary Test the ResourceBundle.Control factory methods.
30 import static java.util.ResourceBundle.Control.*;
35 * An interface for calling ResourceBundle.Control.getControl or
36 * ResourceBundle.Control.getNoFallbackControl.
39 public ResourceBundle.Control getControl(List<String> formats);
48 public ResourceBundle.Control getControl(List<String> formats) {
49 return ResourceBundle.Control.getControl(formats);
56 public ResourceBundle.Control getControl(List<String> formats) {
57 return ResourceBundle.Control.getNoFallbackControl(formats);
84 ResourceBundle.Control contro
[all...]
H A DPackagePrivateTest.java33 import static java.util.ResourceBundle.Control.*;
39 // Make sure that the default Control can't load the package
44 "doesn't throw MissingResourceException with the default Control");
52 new ResourceBundle.Control() {
/openjdk7/hotspot/src/share/vm/opto/
H A DadlcVMDeps.hpp41 enum { Control, I_O, Memory, FramePtr, ReturnAdr, Parms }; enumerator in enum:AdlcVMDeps::__anon294
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractLine.java33 import javax.sound.sampled.Control;
48 protected Control[] controls;
64 protected AbstractLine(Line.Info info, AbstractMixer mixer, Control[] controls) {
67 controls = new Control[0];
112 public final Control[] getControls() {
113 Control[] returnedArray = new Control[controls.length];
123 public final boolean isControlSupported(Control.Type controlType) {
139 public final Control getControl(Control
[all...]
/openjdk7/jdk/src/share/classes/sun/util/
H A DCoreResourceBundleControl-XLocales.java.template37 import java.util.ResourceBundle.Control;
54 public class CoreResourceBundleControl extends ResourceBundle.Control {
66 * This method is to provide a customized ResourceBundle.Control to speed
76 * This method is to provide a customized ResourceBundle.Control to speed
112 return ResourceBundle.Control.TTL_DONT_CACHE;

Completed in 56 milliseconds

1234