Searched defs:actions (Results 76 - 100 of 107) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragGestureRecognizer.java285 * @param actions the permitted source drag action(s)
288 public synchronized void setSourceActions(int actions) { argument
289 sourceActions = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK);
H A DDropTargetContext.java112 * This method sets the current actions acceptable to
115 * @param actions an <code>int</code> representing the supported action(s)
118 protected void setTargetActions(int actions) { argument
122 peer.setTargetActions(actions);
123 getDropTarget().doSetDefaultActions(actions);
126 getDropTarget().doSetDefaultActions(actions);
132 * current actions this <code>DropTarget</code> will accept.
134 * @return the current actions acceptable to this <code>DropTarget</code>
H A DDragSource.java471 * @throws IllegalArgumentException if the source actions for the
499 * @param actions the permitted source drag actions
512 Component c, int actions,
515 return Toolkit.getDefaultToolkit().createDragGestureRecognizer(recognizerAbstractClass, this, c, actions, dgl);
532 * @param actions the permitted source actions
542 public DragGestureRecognizer createDefaultDragGestureRecognizer(Component c, int actions, DragGestureListener dgl) { argument
543 return Toolkit.getDefaultToolkit().createDragGestureRecognizer(MouseDragGestureRecognizer.class, this, c, actions, dgl);
511 createDragGestureRecognizer(Class<T> recognizerAbstractClass, Component c, int actions, DragGestureListener dgl) argument
H A DDropTarget.java82 * @param ops The default acceptable actions for this <code>DropTarget</code>
130 * @param ops The default acceptable actions for this <code>DropTarget</code>
180 * @param ops The default acceptable actions for this <code>DropTarget</code>
246 * Sets the default acceptable actions for this <code>DropTarget</code>
248 * @param ops the default actions
262 actions = ops;
269 * @return the current default actions
273 return actions;
610 actions = f.get("actions", DnDConstant
832 int actions = DnDConstants.ACTION_COPY_OR_MOVE; field in class:DropTarget
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDropTargetContextPeer.java133 int actions, long[] formats, long nativeCtxt, int eventID,
136 return super.postDropTargetEvent(component, x, y, dropAction, actions, formats, nativeCtxt,
132 postDropTargetEvent(Component component, int x, int y, int dropAction, int actions, long[] formats, long nativeCtxt, int eventID, boolean dispatchType) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDragSourceContextPeer.java154 int actions,
151 createDragSource(Component component, Transferable transferable, InputEvent nativeTrigger, int actions, long[] formats, Map formatMap) argument
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DDirectoryScannerConfig.java76 * This enumeration is used to model the actions that a {@link
94 * log the actions that were taken on the matching files.
119 // The actions that this Directory Scanner should carry out when a
122 private Action[] actions = { Action.NOTIFY, Action.LOGRESULT }; field in class:DirectoryScannerConfig
288 * Gets the list of actions that this Directory Scanner should carry
291 * @return The list of actions that this Directory Scanner should carry
297 return (actions == null)?null:actions.clone();
301 * Sets the list of actions that this Directory Scanner should carry
304 * @param actions Th
307 setActions(Action[] actions) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DMotifDnDDragSourceProtocol.java67 protected void initializeDragImpl(int actions, Transferable contents, argument
H A DXDnDDragSourceProtocol.java72 protected void initializeDragImpl(int actions, Transferable contents, argument
83 if ((actions & DnDConstants.ACTION_COPY) != 0) {
88 if ((actions & DnDConstants.ACTION_MOVE) != 0) {
93 if ((actions & DnDConstants.ACTION_LINK) != 0) {
H A DMotifDnDDropTargetProtocol.java448 * TOP_LEVEL_ENTER doesn't communicate the list of supported actions
1054 int dropAction, int actions,
1072 actions,
1053 notifyProtocolListener(XWindow xwindow, int x, int y, int dropAction, int actions, XClientMessageEvent xclient, int eventID) argument
H A DXDragSourceProtocol.java73 * Initalizes a drag operation with the specified supported drop actions,
76 * @param actions a bitwise mask of <code>DnDConstants</code> that represent
77 * the supported drop actions.
86 public final void initializeDrag(int actions, Transferable contents, argument
97 initializeDragImpl(actions, contents, formatMap, formats);
111 protected abstract void initializeDragImpl(int actions, argument
H A DXDropTargetContextPeer.java250 int dropAction, int actions,
267 peer.postDropTargetEvent(component, x, y, dropAction, actions, formats,
249 handleDropTargetNotification(XWindow xwindow, int x, int y, int dropAction, int actions, long[] formats, long nativeCtxt, int eventID) argument
/openjdk7/jdk/src/share/classes/java/io/
H A DFilePermission.java42 * of a pathname and a set of actions valid for that pathname.
45 * actions. A pathname that ends in "/*" (where "/" is
58 * The actions to be granted are passed to the constructor in a string containing
79 * The actions string is converted to lowercase before processing.
128 * All actions (read,write,execute,delete,readlink)
132 * No actions.
136 // the actions mask
146 * the actions string.
150 private String actions; // Left null as long as possible, then field in class:FilePermission
170 sb.append("actions
282 FilePermission(String path, String actions) argument
430 getMask(String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanPermission.java53 * this is one of the actions in the list <a
55 * a comma-separated list of those actions, or <code>*</code>,
56 * representing all actions.</p>
136 * <p><a name="action-list">The possible actions are these:</a></p>
158 * <p>In a comma-separated list of actions, spaces are allowed before
189 * No actions.
194 * All actions.
216 * The actions string.
218 private String actions; field in class:MBeanPermission
221 * The actions mas
402 MBeanPermission(String name, String actions) argument
438 MBeanPermission(String className, String member, ObjectName objectName, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerNotifForwarder.java367 final ObjectName name, final String actions)
369 checkMBeanPermission(mbeanServer,name,actions);
373 final MBeanServer mbs, final ObjectName name, final String actions)
396 actions);
366 checkMBeanPermission( final ObjectName name, final String actions) argument
372 checkMBeanPermission( final MBeanServer mbs, final ObjectName name, final String actions) argument
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyFile.java669 * the reflection API to invoke the (String name, String actions)
675 * @param actions the actions of the Permission being created.
697 String actions)
707 return (Permission) c.newInstance(new Object[] { name, actions });
695 getInstance(String type, String name, String actions) argument
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DDirectoryScanner.java144 // The set of actions for which this DirectoryScanner is configured.
147 final Set<Action> actions; field in class:DirectoryScanner
203 actions = Collections.emptySet();
205 actions = EnumSet.copyOf(Arrays.asList(config.getActions()));
282 // This method is invoked to carry out the configured actions on a
294 // Check out which actions are configured and carry them out.
296 for (Action action : actions) {
301 // actions carried out.
308 // actions carried out.
313 // LOGRESULT was configured - log actions carrie
375 logResult(File file,Action[] actions) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXPathParser.java824 protected CUP$XPathParser$actions action_obj;
829 action_obj = new CUP$XPathParser$actions(this);
1112 class CUP$XPathParser$actions {
1116 CUP$XPathParser$actions(XPathParser parser) {
1128 /* Symbol object for return from actions */
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DOperationFactory.java420 private Operation[] actions ; field in class:OperationFactory.SequenceAction
422 SequenceAction( String sep, Operation[] actions )
425 this.actions = actions ;
434 if (numTokens != actions.length)
436 "Number of tokens and number of actions do not match" ) ;
441 Operation act = actions[ctr] ;
451 "\",actions=" +
452 Arrays.toString(actions) + ")" ;
457 Operation[] actions )
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJFormattedTextField.java733 * <code>actions</code>.
735 private void setFormatterActions(Action[] actions) { argument
736 if (actions == null) {
757 for (int counter = actions.length - 1; counter >= 0;
759 Object key = actions[counter].getValue(Action.NAME);
762 textFormatterActionMap.put(key, actions[counter]);
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketPermission.java51 * host specification and a set of "actions" specifying ways to
101 * The "resolve" action is implied when any of the other actions are present.
104 * The actions string is converted to lowercase before processing.
166 * No actions
171 * All actions
180 // the actions mask
184 * the actions string.
189 private String actions; // Left null as long as possible, then field in class:SocketPermission
245 * Creates a new SocketPermission object with the specified actions.
253 * The <i>actions</
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DJmxMBeanServer.java1503 String actions)
1510 actions);
1500 checkMBeanPermission(String classname, String member, ObjectName objectName, String actions) argument
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DParser.java75 this.actions = this;
87 this.actions = this;
93 public Parser(Scanner scanner, ParserActions actions) throws IOException { argument
95 this.actions = actions;
99 * Usually <code>this.actions == (ParserActions)this</code>.
106 ParserActions actions; field in class:Parser
1594 actions.defineField(p, curClass, doc, mod,
1710 actions.defineField(p, curClass, doc, mod, t, id,
1719 actions
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDropTargetContextPeer.java83 private int currentA; // target actions
84 private int currentSA; // source actions
158 * @param actions set the current actions
161 public synchronized void setTargetActions(int actions) { argument
162 currentA = actions &
167 * @return the current target actions
297 final int actions, final long[] formats,
299 return postDropTargetEvent(component, x, y, dropAction, actions,
423 final int actions, fina
294 handleEnterMessage(final Component component, final int x, final int y, final int dropAction, final int actions, final long[] formats, final long nativeCtxt) argument
420 handleMotionMessage(final Component component, final int x, final int y, final int dropAction, final int actions, final long[] formats, final long nativeCtxt) argument
493 handleDropMessage(final Component component, final int x, final int y, final int dropAction, final int actions, final long[] formats, final long nativeCtxt) argument
555 postDropTargetEvent(final Component component, final int x, final int y, final int dropAction, final int actions, final long[] formats, final long nativeCtxt, final int eventID, final boolean dispatchType) argument
731 private final int actions; field in class:SunDropTargetContextPeer.EventDispatcher
745 EventDispatcher(SunDropTargetContextPeer peer, int dropAction, int actions, long[] formats, long nativeCtxt, boolean dispatchType) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java929 * the reflection API to invoke the (String name, String actions)
935 * @param actions the actions of the Permission being created.
957 String actions)
966 Permission answer = getKnownInstance(pc, name, actions);
971 if (name == null && actions == null) {
983 new Object[] { name, actions });
987 if (name != null && actions == null) {
994 new Object[] { name, actions });
999 new Object[] { name, actions });
955 getInstance(String type, String name, String actions) argument
1009 getKnownInstance(Class claz, String name, String actions) argument
2182 private String actions; field in class:PolicyFile.SelfPermission
2204 SelfPermission(String type, String name, String actions, Certificate certs[]) argument
[all...]

Completed in 138 milliseconds

12345