Searched defs:link (Results 1 - 25 of 63) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeAttributePropertyInfoImpl.java62 public void link() { method in class:RuntimeAttributePropertyInfoImpl
64 super.link();
H A DRuntimeValuePropertyInfoImpl.java62 public void link() { method in class:RuntimeValuePropertyInfoImpl
64 super.link();
H A DSingleTypePropertyInfoImpl.java43 * {@link PropertyInfoImpl} that can only have one type.
45 * Specifically, {@link AttributePropertyInfoImpl} and {@link ValuePropertyInfoImpl}.
55 * @see {@link #getTarget()}.
88 public void link() { method in class:SingleTypePropertyInfoImpl
89 super.link();
127 // this situation is checked by by the link method.
H A DElementPropertyInfoImpl.java46 * Common {@link ElementPropertyInfo} implementation used for both
147 * Used by {@link PropertyInfoImpl} to create new instances of {@link TypeRef}
171 protected void link() { method in class:ElementPropertyInfoImpl
172 super.link();
174 ref.link();
H A DTypeInfoImpl.java41 * Common implementation between {@link ClassInfoImpl} and {@link ElementInfoImpl}.
56 * {@link TypeInfoSet} to which this class belongs.
61 * Reference to the {@link ModelBuilder}, only until we link {@link TypeInfo}s all together,
62 * because we don't want to keep {@link ModelBuilder} too long.
79 /*package*/ void link() { method in class:TypeInfoImpl
92 * Parses an {@link XmlRootElement} annotation on a class
127 * Parses a (potentially-null) {@link XmlTyp
[all...]
H A DTypeRefImpl.java74 protected void link() { method in class:TypeRefImpl
H A DEnumLeafInfoImpl.java46 * {@link EnumLeafInfo} implementation.
68 * All the {@link EnumConstantImpl}s are linked in this list.
87 * that this {@link EnumLeafInfo} represents.
114 * Build {@link EnumConstant}s and discover/report any error in it.
201 public void link() { method in class:EnumLeafInfoImpl
204 super.link();
232 * When a bean binds to an element, it's always through {@link XmlRootElement},
236 * you shouldn't be invoking this method on {@link ClassInfoImpl}.
H A DReferencePropertyInfoImpl.java54 * Implementation of {@link ReferencePropertyInfo}.
113 * Compute {@link #types}.
116 * if true, every {@link XmlElementRef} must yield at least one type.
270 * we don't waste time generating exceptions every time we call {@link #isRequired(XmlElementRef)}.
368 protected void link() { method in class:ReferencePropertyInfoImpl
369 super.link();
H A DRuntimeModelBuilder.java61 * {@link ModelBuilder} that works at the run-time by using
65 * This extends {@link ModelBuilder} by providing more functionalities such
72 * The {@link JAXBContextImpl} for which the model is built.
122 public RuntimeTypeInfoSet link() { method in class:RuntimeModelBuilder
123 return (RuntimeTypeInfoSet)super.link();
127 * Creates a {@link Transducer} given a reference.
129 * Used to implement {@link RuntimeNonElementRef#getTransducer()}.
169 * This transducer wraps another {@link Transducer} and adds
/openjdk7/jdk/test/java/nio/file/attribute/BasicFileAttributeView/
H A DBasic.java49 check(!attrs.isSymbolicLink(), "is not a link");
64 check(!attrs.isSymbolicLink(), "is not a link");
95 static void checkAttributesOfLink(Path link) argument
99 Files.readAttributes(link, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS);
100 check(attrs.isSymbolicLink(), "is a link");
120 Path link = dir.resolve("link");
122 Files.createSymbolicLink(link, file);
128 checkAttributesOfLink(link);
/openjdk7/jdk/test/javax/swing/JFileChooser/6798062/
H A Dbug6798062.java140 pnContent.add(new JLabel("Provide link here:"));
160 private final ShellFolder link; field in class:bug6798062.MyThread
162 private MyThread(int delay, String link) { argument
168 linkFolder = ShellFolder.getShellFolder(new File(link));
175 this.link = linkFolder;
181 if (link != null) {
183 link.getLinkLocation();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DAttributeHTML.java88 private final String codeLink(int link, int method_number) { argument
90 method_number + "@" + link + "\" TARGET=Code>" +
91 link + "</A>";
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurveLink.java46 public boolean absorb(CurveLink link) { argument
47 return absorb(link.curve, link.ytop, link.ybot, link.etag);
107 public void setNext(CurveLink link) { argument
108 this.next = link;
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLBodyElement.java75 * Color of links that are not active and unvisited. See the link
80 public void setLink(String link); argument
/openjdk7/jdk/test/java/io/File/
H A DSymLinks.java99 * Creates a sym link source->target
106 * Returns true if the "link" exists and is a sym link.
108 static boolean isSymLink(File link) { argument
109 return Files.isSymbolicLink(link.toPath());
113 * Returns the last modified time of a sym link.
115 static long lastModifiedOfSymLink(File link) throws IOException { argument
117 Files.readAttributes(link.toPath(), BasicFileAttributes.class, NOFOLLOW_LINKS);
127 Path link = dir.toPath().resolve("link");
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAnnotationTypeOptionalMemberWriterImpl.java137 protected Content getNavSummaryLink(ClassDoc cd, boolean link) { argument
138 if (link) {
H A DNestedClassWriterImpl.java199 protected Content getNavSummaryLink(ClassDoc cd, boolean link) { argument
200 if (link) {
213 protected void addNavDetailLink(boolean link, Content liNav) { argument
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.inline.hpp81 inline intptr_t* frame::link() const { function in class:frame
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlDocWriter.java82 * @param link String name of the file.
83 * @param where Position of the link in the file. Character '#' is not
85 * @param label Tag for the link.
88 public void printHyperLink(String link, String where, argument
90 print(getHyperLinkString(link, where, label, strong, "", "", ""));
96 * @param link String name of the file.
97 * @param where Position of the link in the file. Character '#' is not
99 * @param label Tag for the link.
101 public void printHyperLink(String link, String where, String label) { argument
102 printHyperLink(link, wher
115 printHyperLink(String link, String where, String label, boolean strong, String stylename) argument
131 getHyperLinkString(String link, String where, String label, boolean strong) argument
147 getHyperLinkString(String link, String where, String label, boolean strong, String stylename) argument
162 getHyperLink(String link, String where, Content label) argument
180 getHyperLinkString(String link, String where, String label, boolean strong, String stylename, String title, String target) argument
228 getHyperLink(String link, String where, Content label, String title, String target) argument
250 getHyperLink(String link, Content label) argument
261 getHyperLinkString(String link, String label) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DExtern.java37 * Process and manage "-link" and "-linkoffline" to external packages. The
38 * options "-link" and "-linkoffline" both depend on the fact that Javadoc now
64 * True if we are using -linkoffline and false if -link is used instead.
74 * Package name, found in the "package-list" file in the {@link path}.
136 * Convert a link to be an external link if appropriate.
140 * @param link The link to convert.
141 * @return if external return converted link else return null
144 String relativepath, String link) {
143 getExternalLink(String pkgName, String relativepath, String link) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java139 // (As long as the caller doesn't screw up link/unlink.)
170 * <p>I use the link/unlink concept because of distant
181 public int link(final int size) method in class:VariableStack
212 * {@link #link(int size)}.
222 * {@link #link(int size)}.
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java78 final Element link = getElement("link"); field in class:DTD
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java41 * Service-provider class for file systems. The methods defined by the {@link
47 * identified by a {@code URI} {@link #getScheme() scheme}. The default provider
48 * is identified by the URI scheme "file". It creates the {@link FileSystem} that
50 * The {@link FileSystems} class defines how file system providers are located
58 * <p> A provider is a factory for one or more {@link FileSystem} instances. Each
60 * the provider's {@link #getScheme scheme}. The default file system, for example,
63 * The {@link #newFileSystem newFileSystem} method may be used to create a file
64 * system, and the {@link #getFileSystem getFileSystem} method may be used to
105 * {@link RuntimePermission}<tt>("fileSystemProvider")</tt>
144 * providers as described by the {@link FileSystem
647 createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs) argument
681 createLink(Path link, Path existing) argument
764 readSymbolicLink(Path link) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dheap.hpp76 FreeBlock* link() const { return _link; } function in class:FreeBlock
77 void set_link(FreeBlock* link) { _link = link; } argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.inline.hpp67 inline intptr_t* frame::link() const { return (intptr_t *)(fp()[FP->sp_offset_in_saved_window()] + STACK_BIAS); } function in class:frame
69 inline void frame::set_link(intptr_t* addr) { assert(link()==addr, "frame nesting is controlled by hardware"); }
235 // note: adjust this code if the link argument in StubGenerator::call_stub() changes!
236 const Argument link = Argument(0, false); local
237 return (JavaCallWrapper*)sp()[link.as_in().as_register()->sp_offset_in_saved_window()];

Completed in 77 milliseconds

123