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

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DAction.java35 * The <code>Action</code> annotation allows explicit association of a
36 * WS-Addressing <code>Action</code> message addressing property with
42 * <code>wsam:Action</code> attribute on the WSDL <code>input</code>,
44 * is based upon which attributes of the <code>Action</code> annotation have been specified.
45 * For the exact computation of <code>wsam:Action</code> values for the messages, refer
48 * <b>Example 1</b>: Specify explicit values for <code>Action</code> message addressing property
54 * <b>&#64;Action(
70 * <b>wsam:Action="http://example.com/inputAction"</b>/>
72 * <b>wsam:Action="http://example.com/outputAction"</b>/>
80 * <b>Example 2</b>: Specify explicit value for <code>Action</cod
127 public @interface Action { interface
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DAction.java25 * Action used in Context.doAs
27 public interface Action { interface
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DAction.java33 public interface Action interface
37 * passed so that the Action may set the next state in
47 * Any exception thrown by the Action for the transition
55 // end of Action.java
/openjdk7/jdk/src/share/sample/nio/file/
H A DAclEdit.java185 static enum Action { enum in class:AclEdit
196 Action action = null;
205 action = Action.PRINT;
219 action = Action.ADD;
229 action = Action.REMOVE;
239 action = Action.REPLACE;
246 int fileArg = (action == Action.PRINT) ? 0 : 1;
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequest.java60 static class Action { class in class:Request
63 private Action(String name) { this.name = name; } method in class:Request.Action
66 static Action GET = new Action("GET");
67 static Action PUT = new Action("PUT");
68 static Action POST = new Action("POST");
69 static Action HEAD = new Action("HEA
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAction.java32 * The <code>Action</code> interface provides a useful extension to the
57 * The <code>Action</code> object
58 * can then be added to multiple <code>Action</code>-aware containers
59 * and connected to <code>Action</code>-capable
61 * deactivated all at once by invoking the <code>Action</code> object's
64 * Note that <code>Action</code> implementations tend to be more expensive
68 * you should take care to only use <code>Action</code>s where their benefits
72 * <h4><a name="buttonActions"></a>Swing Components Supporting <code>Action</code></h4>
74 * Many of Swing's components have an <code>Action</code> property. When
75 * an <code>Action</cod
215 public interface Action extends ActionListener { interface in inherits:ActionListener
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/callback/
H A DDialogCallbackHandler.java86 private static interface Action { interface in class:DialogCallbackHandler
105 final List<Action> okActions = new ArrayList<>(2);
151 okActions.add(new Action() {
173 okActions.add(new Action() {
208 Iterator<Action> iterator = okActions.iterator();
/openjdk7/jdk/src/share/classes/java/awt/
H A DDesktop.java70 * Desktop.Action} class.
87 * @see java.awt.Desktop#isSupported(java.awt.Desktop.Action)
90 public static enum Action { enum in class:Desktop
181 * most of the platforms support the {@link Desktop.Action#OPEN}
187 * @param action the specified {@link Action}
190 * @see Desktop.Action
192 public boolean isSupported(Action action) {
223 private void checkActionSupport(Action actionType){
255 * does not support the {@link Desktop.Action#OPEN} action
269 checkActionSupport(Action
[all...]
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DWritingInterruptionTest.java67 protected abstract static class Action implements Runnable { class in class:WritingInterruptionTest
77 protected static class DisposeAction extends Action {
89 protected static class AbortAction extends Action {
101 protected static class ResetAction extends Action {
114 Action action;
118 protected WritingInterruptionTest(Action action) {
H A DReadingInterruptionTest.java64 protected abstract static class Action implements Runnable { class in class:ReadingInterruptionTest
74 protected static class DisposeAction extends Action {
86 protected static class AbortAction extends Action {
98 protected static class ResetAction extends Action {
112 Action action;
116 protected ReadingInterruptionTest(Action action) {
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DDirectoryScannerConfig.java81 public enum Action { enum in class:DirectoryScannerConfig
122 private Action[] actions = { Action.NOTIFY, Action.LOGRESULT };
296 public Action[] getActions() {
307 public void setActions(Action[] actions) {
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java97 private static enum Action { enum in class:SdpProvider
104 boolean match(Action action, InetAddress address, int port);
109 private final Action action;
112 PortRangeRule(Action action, int portStart, int portEnd) {
117 Action action() {
121 public boolean match(Action action, InetAddress address, int port) {
133 AddressPortRangeRule(Action action, InetAddress address,
142 public boolean match(Action action, InetAddress address, int port) {
217 Action action = null;
218 for (Action
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsCompactionManager.hpp57 enum Action { enum in class:ParCompactionManager
118 Action _action;
138 Action action() { return _action; }
139 void set_action(Action v) { _action = v; }
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp64 typedef address (*Action)(methodHandle method, TRAPS); typedef in class:VALUE_OBJ_CLASS_SPEC
92 Action action() const { return _action[state()]; }
123 static Action _action[number_of_states]; // the actions
125 static void def(State state, int init, Action action);
/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java64 static enum Action { enum in class:Demo
162 Action action = Action.valueOf(args[0]);
164 if (action == Action.create)

Completed in 102 milliseconds