Searched defs:action (Results 76 - 100 of 196) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DKrb5Helper.java119 * Returns a ServicePermission for the principal name and action.
122 String action) {
124 return proxy.getServicePermission(principalName, action);
121 getServicePermission(String principalName, String action) argument
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequest.java84 private Action action; field in class:Request
88 Action action() { return action; } method in class:Request
93 action = a;
99 return (action + " " + version + " " + uri);
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonMenuBar.java28 import com.sun.java.swing.action.ActionManager;
29 import com.sun.java.swing.action.StateChangeAction;
52 protected void configureToggleMenuItem(JMenuItem menuItem, Action action) argument
54 configureMenuItem(menuItem, action);
55 action.addPropertyChangeListener(new ToggleActionPropertyChangeListener(menuItem));
58 protected void configureMenuItem(JMenuItem menuItem, Action action) argument
70 protected void addMenuItem(JMenu menu, Action action) argument
72 JMenuItem menuItem = menu.add(action);
73 configureMenuItem(menuItem, action);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DActionPropertyChangeListener.java61 private Action action; field in class:ActionPropertyChangeListener
75 this.action = a;
96 protected abstract void actionPropertyChanged(T target, Action action, argument
124 return action;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DLazyActionMap.java96 public void put(Action action) { argument
97 put(action.getValue(Action.NAME), action);
100 public void put(Object key, Action action) { argument
102 super.put(key, action);
/openjdk7/jdk/src/share/classes/java/beans/
H A DEventHandler.java72 * all the action listeners will be instances of a single class
155 * just passes the incoming event object to the target's action.
212 * For example, the following action listener
236 * following action listener:
280 private String action; field in class:EventHandler
294 * @param target the object that will perform the action
295 * @param action the name of a (possibly qualified) property or method on
298 * @param listenerMethodName the name of the method in the listener interface that should trigger the action
301 * @throws NullPointerException if <code>action</code> is null
310 @ConstructorProperties({"target", "action", "eventPropertyNam
311 EventHandler(Object target, String action, String eventPropertyName, String listenerMethodName) argument
530 create(Class<T> listenerInterface, Object target, String action) argument
587 create(Class<T> listenerInterface, Object target, String action, String eventPropertyName) argument
677 create(Class<T> listenerInterface, Object target, String action, String eventPropertyName, String listenerMethodName) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerFactory.java408 private static void checkPermission(String action) argument
412 Permission perm = new MBeanServerPermission(action);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.cpp106 // dummy action for inactive invocation counters
120 void InvocationCounter::def(State state, int init, Action action) { argument
124 _action[state] = action;
/openjdk7/jdk/src/share/classes/java/awt/
H A DDesktop.java69 * <p> Each operation is an action type represented by the {@link
72 * <p> Note: when some action is invoked and the associated
83 * Represents an action type. Each platform supports a different
85 * method to determine if the given action is supported by the
92 * Represents an "open" action.
97 * Represents an "edit" action.
102 * Represents a "print" action.
107 * Represents a "mail" action.
113 * Represents a "browse" action.
177 * Tests whether an action i
192 isSupported(Action action) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceDragEvent.java37 * The <code>DragSourceDragEvent</code> reports the <i>target drop action</i>
38 * and the <i>user drop action</i> that reflect the current state of
41 * <i>Target drop action</i> is one of <code>DnDConstants</code> that represents
42 * the drop action selected by the current drop target if this drop action is
44 * drop action is not supported by the drag source.
46 * <i>User drop action</i> depends on the drop actions supported by the drag
47 * source and the drop action selected by the user. The user can select a drop
48 * action by pressing modifier keys during the drag operation:
54 * If the user selects a drop action, th
112 DragSourceDragEvent(DragSourceContext dsc, int dropAction, int action, int modifiers) argument
162 DragSourceDragEvent(DragSourceContext dsc, int dropAction, int action, int modifiers, int x, int y) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLFormElement.java76 * Server-side form handler. See the action attribute definition in HTML
80 public void setAction(String action); argument
105 * Submits the form. It performs the same action as a submit button.
110 * Restores a form element's default values. It performs the same action
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSParser.java374 * node. For this action to work, the context node must be an
380 * parse operation. For this action to work, the context node must be an
387 * sibling of the context node. For this action to work the context
394 * sibling of the context node. For this action to work the context
401 * this action to work, the context node must have a parent, and the
411 * <code>action</code> arguments. When parsing the input stream, the
420 * <br> If the context node is a <code>Document</code> node and the action
445 * the context node of type <code>DOCUMENT_NODE</code>, and the action
454 * @param action This parameter describes which action shoul
483 parseWithContext(LSInput input, Node contextArg, short action) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/mime/
H A DMIMEPart.java81 public void withAllSubEntitiesDo(EntityAction action) { argument
82 _helper.withAllSubEntitiesDo(action);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DEntity.java80 public void withAllSubEntitiesDo(EntityAction action) { argument
84 public void withAllQNamesDo(QNameAction action) { argument
85 action.perform(getElementName());
88 public void withAllEntityReferencesDo(EntityReferenceAction action) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DProblemActionHeader.java51 protected @NotNull String action; field in class:ProblemActionHeader
58 public ProblemActionHeader(@NotNull String action, @NotNull AddressingVersion av) { argument
59 this(action,null,av);
62 public ProblemActionHeader(@NotNull String action, String soapAction, @NotNull AddressingVersion av) { argument
63 assert action!=null;
65 this.action = action;
98 w.writeCharacters(action);
114 she.addTextNode(action);
128 h.characters(action
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLFaultImpl.java43 private String action = ""; field in class:WSDLFaultImpl
73 return action;
75 public void setAction(String action) { argument
76 this.action = action;
H A DWSDLInputImpl.java45 private String action; field in class:WSDLInputImpl
67 return action;
79 public void setAction(String action) { argument
80 this.action = action;
H A DWSDLOutputImpl.java44 private String action; field in class:WSDLOutputImpl
62 return action;
83 public void setAction(String action) { argument
84 this.action = action;
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKtab.java56 char action; field in class:Ktab
79 ktab.action = 'l';
84 if (ktab.table.isMissing() && ktab.action != 'a') {
103 switch (ktab.action) {
146 action = 'l';
149 action = 'a';
156 action = 'd';
165 if (action == 'l') { // list etypes
167 } else if (action == 'd') { // delete etypes
180 error(args[i] + " is not valid after -" + action);
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLigatureSubstProc.cpp94 LigatureActionEntry action; local
102 action = SWAPL(*ap.getAlias());
109 offset = action & lafComponentOffsetMask;
125 if (action & (lafLast | lafStore)) {
145 } while (!(action & lafLast) && (m>=0) ); // stop if last bit is set, or if run out of items
H A DLigatureSubstProc2.cpp100 LigatureActionEntry action; local
115 action = SWAPL(*ap.getAlias());
121 offset = action & lafComponentOffsetMask;
130 if (action & (lafLast | lafStore)) {
148 } while (!(action & lafLast) && (m>=0) ); // stop if last bit is set, or if run out of items
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DWritingInterruptionTest.java114 Action action; field in class:WritingInterruptionTest
118 protected WritingInterruptionTest(Action action) { argument
119 this.action = action;
123 this.action.setTarget(w);
171 Thread t = new Thread(action);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/fsm/
H A DStateEngineImpl.java56 // An action that does nothing at all.
81 public StateEngine add( State oldState, Input input, Guard guard, Action action, argument
88 GuardedAction ga = new GuardedAction( guard, action, newState ) ;
94 public StateEngine add( State oldState, Input input, Action action, argument
101 GuardedAction ta = new GuardedAction( action, newState ) ;
107 public StateEngine setDefault( State oldState, Action action, State newState ) argument
113 oldStateImpl.setDefaultAction( action ) ;
180 Action action = currentState.getDefaultAction() ;
181 if (action == null)
182 action
247 performStateTransition( FSM fsm, Input in, StateImpl nextState, Action action, boolean debug ) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DServicePermission.java60 * designated by the action. In the case of the TGT, granting this
89 * For a Kerberized server the action is "accept". For example, the permission
140 * and <code>action</code>.
145 * @param action the action string
147 public ServicePermission(String servicePrincipal, String action) { argument
149 init(servicePrincipal, getMask(action));
234 * @param mask a specific integer action mask to translate into a string
289 * Return the current action mask.
299 * Convert an action strin
305 getMask(String action) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Dplaceholders.cpp124 PlaceholderEntry* PlaceholderTable::find_and_add(int index, unsigned int hash, Symbol* name, Handle loader, classloadAction action, Symbol* supername, Thread* thread) { argument
128 add_entry(index, hash, name, loader, (action == LOAD_SUPER), supername);
131 if (action == LOAD_SUPER) {
136 if (probe) probe->add_seen_thread(thread, action);
149 // All claimants remove SeenThread after completing action

Completed in 94 milliseconds

12345678