Searched defs:target (Results 76 - 100 of 670) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLBaseElement.java56 * The default target frame. See the target attribute definition in HTML
60 public void setTarget(String target); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/writer/
H A DFileCodeWriter.java46 /** The target directory to put source code. */
47 private final File target; field in class:FileCodeWriter
55 public FileCodeWriter( File target ) throws IOException {
56 this(target,false);
59 public FileCodeWriter( File target, String encoding ) throws IOException { argument
60 this(target,false, encoding);
63 public FileCodeWriter( File target, boolean readOnly ) throws IOException { argument
64 this(target, readOnly, null);
67 public FileCodeWriter( File target, boolean readOnly, String encoding ) throws IOException { argument
68 this.target
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/outline/
H A DElementOutline.java59 public final CElementInfo target; field in class:ElementOutline
68 protected ElementOutline(CElementInfo target, JDefinedClass implClass) { argument
69 this.target = target;
H A DEnumOutline.java48 public final CEnumLeafInfo target; field in class:EnumOutline
73 protected EnumOutline(CEnumLeafInfo target, JDefinedClass clazz) { argument
74 this.target = target;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/util/
H A DValidationEventLocatorExImpl.java43 public ValidationEventLocatorExImpl( Object target, String fieldName ) { argument
44 super(target);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDRefPattern.java52 private final DDefine target; field in class:DRefPattern
54 public DRefPattern(DDefine target) { argument
55 this.target = target;
59 return target.isNullable();
66 return target;
70 * Gets the name of the target.
73 return target.getName();
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWMenuBarPeer.java42 WMenuBarPeer(MenuBar target) { argument
43 this.target = target;
45 WToolkit.targetToPeer(target.getParent());
H A DWMenuPeer.java44 WMenuPeer(Menu target) { argument
45 this.target = target;
46 MenuContainer parent = target.getParent();
H A DWPanelPeer.java41 runComponents(((Container)target).getComponents(), g,
48 runComponents(((Container)target).getComponents(), g,
72 WPanelPeer(Component target) { argument
73 super(target);
80 Color c = ((Component)target).getBackground();
83 ((Component)target).setBackground(c);
86 c = ((Component)target).getForeground();
89 ((Component)target).setForeground(c);
H A DWPopupMenuPeer.java33 // We can't use target.getParent() for TrayIcon popup
37 public WPopupMenuPeer(PopupMenu target) { argument
38 this.target = target;
41 // We can't use target.getParent() for TrayIcon popup
44 boolean isTrayIconPopup = AWTAccessor.getPopupMenuAccessor().isTrayIconPopup(target);
46 parent = AWTAccessor.getMenuComponentAccessor().getParent(target);
48 parent = target.getParent();
73 Component origin = (Component)e.target;
81 e.target
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java45 * Copy file from source to target
48 final WindowsPath target,
84 target.checkWrite();
88 // attempt to get attributes of target file
90 // if target exists and !replace then throw exception
109 // open target (don't follow links)
112 targetHandle = target.openForReadAttributeAccess(false);
124 target.getPathForExceptionMessage());
144 final String targetPath = asWin32Path(target);
146 // if target exist
47 copy(final WindowsPath source, final WindowsPath target, CopyOption... options) argument
258 move(WindowsPath source, WindowsPath target, CopyOption... options) argument
476 copySecurityAttributes(WindowsPath source, WindowsPath target, boolean followLinks) argument
[all...]
/openjdk7/jdk/test/java/nio/file/Path/
H A DMacPathTest.java76 private static boolean match(Path target, Path src) { argument
77 String fname = target.toString();
79 if (target.equals(src)) {
/openjdk7/jdk/test/sun/security/rsa/
H A DInvalidBitString.java121 private static boolean test(Certificate target, Certificate signer, argument
128 target.verify(pubKey);
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DLocaleNameProviderImpl.java46 public String getDisplayLanguage(String lang, Locale target) { argument
47 if (!Utils.supportsLocale(availList, target)) {
48 throw new IllegalArgumentException("locale is not supported: "+target);
54 ResourceBundle rb = ResourceBundle.getBundle("com.bar.LocaleNames", target);
62 public String getDisplayCountry(String ctry, Locale target) { argument
63 if (!Utils.supportsLocale(availList, target)) {
64 throw new IllegalArgumentException("locale is not supported: "+target);
70 ResourceBundle rb = ResourceBundle.getBundle("LocaleNames", target);
78 public String getDisplayVariant(String vrnt, Locale target) { argument
79 if (!Utils.supportsLocale(availList, target)) {
[all...]
/openjdk7/jdk/test/sample/mergesort/
H A DMergeSortTest.java38 private MergeSort target; field in class:MergeSortTest
40 public MergeSortTest(Random random, MergeSort target) { argument
42 this.target = target;
72 target.sort(array);
79 target.sort(array);
85 target.sort(array);
91 target.sort(array);
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DNotificationTargetImpl.java40 * target synctax is <host>:<port>:community. Eg: "localhost:163:private".
44 * @throws IllegalArgumentException In case the target is malformed
46 public NotificationTargetImpl(String target) argument
48 parseTarget(target);
64 private void parseTarget(String target) argument
67 if(target == null ||
68 target.length() == 0) throw new
69 IllegalArgumentException("Invalid target [" + target + "]");
72 if (target
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXCanvasPeer.java45 XCanvasPeer(Component target) { argument
46 super(target);
114 target.repaint();
H A DXCheckboxMenuItemPeer.java41 XCheckboxMenuItemPeer(CheckboxMenuItem target) { argument
42 super(target);
58 * Access to target's fields
H A DXDialogPeer.java39 XDialogPeer(Dialog target) { argument
40 super(target);
46 Dialog target = (Dialog)(this.target);
47 undecorated = Boolean.valueOf(target.isUndecorated());
48 winAttr.nativeDecor = !target.isUndecorated();
55 winAttr.isResizable = true; //target.isResizable();
56 winAttr.initialResizability = target.isResizable();
57 winAttr.title = target.getTitle();
64 Dialog target
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLOOKUPSWITCH.java77 InstructionHandle target) {
78 super(com.sun.org.apache.bcel.internal.Constants.LOOKUPSWITCH, match, targets, target);
76 LOOKUPSWITCH(int[] match, InstructionHandle[] targets, InstructionHandle target) argument
H A DTABLESWITCH.java80 * @param target default branch
83 InstructionHandle target) {
84 super(com.sun.org.apache.bcel.internal.Constants.TABLESWITCH, match, targets, target);
82 TABLESWITCH(int[] match, InstructionHandle[] targets, InstructionHandle target) argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFlowList.java80 public void backPatch(InstructionHandle target) { argument
85 bh.setTarget(target);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DProcessingInstructionImpl.java52 protected String target; field in class:ProcessingInstructionImpl
60 String target, String data) {
62 this.target = target;
78 * Returns the target
84 return target;
92 * A PI's "target" states what processor channel the PI's data
95 * In XML, a PI's "target" is the first (whitespace-delimited) token
98 * In HTML, target is always null.
106 return target;
59 ProcessingInstructionImpl(CoreDocumentImpl ownerDoc, String target, String data) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DThreadControllerWrapper.java61 public SafeThread(Runnable target) { argument
62 super(target);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/
H A DPortableRemoteObject.java126 * of PortableRemoteObject or have been previously the target of a call to
257 * @param target the object to connect.
260 * or if <code>target</code> is already connected to a different ORB than
263 public void connect (Remote target, Remote source) argument
266 if (target == null || source == null) {
298 if (StubAdapter.isStub(target)) {
301 targetTie = Util.getTie(target);
306 if (Utility.loadTie(target) != null) {
307 throw new RemoteException("'target' servant not exported");
320 "'source' object exported to IIOP, 'target' i
[all...]

Completed in 62 milliseconds

1234567891011>>