/openjdk7/jaxp/src/org/w3c/dom/xpath/ |
H A D | XPathNSResolver.java | 46 * The <code>XPathNSResolver</code> interface permit <code>prefix</code> 55 * Look up the namespace URI associated to the given namespace prefix. The 58 * @param prefix The prefix to look for. 62 public String lookupNamespaceURI(String prefix); argument
|
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/annotation/ |
H A D | XmlNs.java | 34 * Associates a namespace prefix with a XML namespace URI. 51 * Namespace prefix 53 String prefix(); method in interface:XmlNs
|
/openjdk7/jdk/test/java/io/File/createTempFile/ |
H A D | SpecialTempFile.java | 37 private static void test(String name, String[] prefix, String[] suffix) { argument 38 if (prefix == null || suffix == null 39 || prefix.length != suffix.length) 47 for (int i = 0; i < prefix.length; i++) { 51 + ", creating temp file with prefix, " 52 + prefix[i] + ", suffix, " + suffix[i]); 54 f = File.createTempFile(prefix[i], suffix[i]);
|
H A D | Patterns.java | 26 @summary Check various temp-file prefix/suffix cases */ 35 static void ckn(String prefix, String suffix) throws Exception { argument 37 File f = File.createTempFile(prefix, suffix, dir); 43 System.err.println("\"" + prefix + "\", \"" + suffix 49 throw new Exception("\"" + prefix + "\", \"" + suffix 53 static void cky(String prefix, String suffix) throws Exception { argument 54 File f = File.createTempFile(prefix, suffix, dir); 56 System.err.println("\"" + prefix + "\", \"" + suffix
|
/openjdk7/jaxp/src/javax/xml/namespace/ |
H A D | NamespaceContext.java | 36 * Namespace name expressed as a URI to which the prefix is bound</li> 37 * <li>prefix: syntactically, this is the part of the attribute name 42 * <code><element xmlns:prefix="http://Namespace-name-URI"></code></p> 45 * for Namespace URI and prefix resolution.</p> 67 * <p>A prefix can only be bound to a <strong>single</strong> 85 * <p>Get Namespace URI bound to a prefix in the current scope.</p> 87 * <p>When requesting a Namespace URI by prefix, the following 89 * possible prefix values:</p> 95 * <code>getNamespaceURI(prefix)</code> 100 * <td>prefix paramete 149 getNamespaceURI(String prefix) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/security/x509/ |
H A D | X509AttributeName.java | 39 private String prefix = null; field in class:X509AttributeName 51 prefix = name; 53 prefix = name.substring(0, i); 59 * Return the prefix of the name. 62 return (prefix);
|
/openjdk7/jdk/src/share/classes/sun/swing/ |
H A D | MenuItemCheckIconFactory.java | 37 boolean isCompatible(Object icon, String prefix); argument
|
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/ |
H A D | AddressableTest.java | 72 public static void test(String proto, String prefix) throws Exception { argument 91 int i = clientAddr1.toString().indexOf(prefix);
|
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | REProgram.java | 42 char[] prefix; // Prefix string optimization field in class:REProgram 100 * find an prefix anchor string so that substantial amounts of input can 113 prefix = null; 128 // then get that atom as an prefix because there's no other choice 130 prefix = new char[lenAtom]; 131 System.arraycopy(instruction, RE.nodeSize * 2, prefix, 0, lenAtom);
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/ |
H A D | NamespaceContextWrapper.java | 54 public String getNamespaceURI(String prefix) { argument 55 if (prefix == null) { 58 return fNamespaceContext.getURI(prefix.intern());
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/ |
H A D | XIncludeNamespaceSupport.java | 85 * @param prefix the prefix of the desired URI 86 * @return the URI corresponding to the prefix in the context of the include parent 88 public String getURIFromIncludeParent(String prefix) { argument 93 return getURI(prefix, lastValidContext);
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/ |
H A D | Namespaces.java | 40 * Returns the "prefix" part of a QName or the empty string (not 41 * null) if the name has no prefix. 44 * @return The prefix part of the element name. 48 String prefix = ""; 51 prefix = name.substring(0, name.indexOf(':')); 54 return prefix; 59 * name if it has no prefix. 75 * Returns the namespace URI for the specified prefix at the 79 * @param prefix The prefix 83 getNamespaceURI(Node node, String prefix) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/ |
H A D | NameSpace.java | 53 * @param prefix Prefix of this element 56 public NameSpace(String prefix, String uri) argument 58 m_prefix = prefix;
|
H A D | PrefixResolver.java | 28 * prefix at a particular point in a document, or mapping the prefixes 36 * Given a namespace, get the corrisponding prefix. This assumes that 40 * @param prefix The prefix to look up, which may be an empty string ("") for the default Namespace. 42 * @return The associated Namespace URI, or null if the prefix 45 String getNamespaceForPrefix(String prefix); argument 48 * Given a namespace, get the corresponding prefix, based on the context node. 50 * @param prefix The prefix to look up, which may be an empty string ("") for the default Namespace. 53 * @return The associated Namespace URI as a string, or null if the prefix 56 getNamespaceForPrefix(String prefix, org.w3c.dom.Node context) argument [all...] |
H A D | PrefixResolverDefault.java | 30 * can be used to perform prefix-to-namespace lookup 38 * The context to resolve the prefix from, if the context 56 * Given a namespace, get the corrisponding prefix. This assumes that 59 * @param prefix Prefix to resolve. 60 * @return Namespace that prefix resolves to, or null if prefix 63 public String getNamespaceForPrefix(String prefix) argument 65 return getNamespaceForPrefix(prefix, m_context); 69 * Given a namespace, get the corrisponding prefix. 72 * @param prefix Prefi 78 getNamespaceForPrefix(String prefix, org.w3c.dom.Node namespaceContext) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/ |
H A D | XPathNSResolverImpl.java | 37 * <p>The <code>XPathNSResolver</code> interface permit <code>prefix</code> 59 public String lookupNamespaceURI(String prefix) { argument 60 return super.getNamespaceForPrefix(prefix);
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/ |
H A D | JAXPPrefixResolver.java | 33 * can be used to perform prefix-to-namespace lookup 48 public String getNamespaceForPrefix( String prefix ) { 49 return namespaceContext.getNamespaceURI( prefix ); 79 * Given a prefix and a Context Node, get the corresponding namespace. 82 * @param prefix Prefix to resolve. 84 * xmlns attribute that binds a prefix to a namespace. 85 * @return Namespace that prefix resolves to, or null if prefix 88 public String getNamespaceForPrefix(String prefix, argument 93 if (prefix [all...] |
/openjdk7/jaxp/src/javax/xml/stream/events/ |
H A D | StartElement.java | 110 * Gets the value that the prefix is bound to in the 112 * the prefix is not bound in this context 113 * @param prefix the prefix to lookup 114 * @return the uri bound to the prefix or null 116 public String getNamespaceURI(String prefix); argument
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/ |
H A D | NameModifierImpl.java | 31 private String prefix ; field in class:NameModifierImpl 36 this.prefix = null ; 40 public NameModifierImpl( String prefix, String suffix ) argument 42 this.prefix = prefix ; 79 prefix = pattern.substring( 0, first ) ; 109 if (prefix != null) 110 sb.append( prefix ) ;
|
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/ |
H A D | DOMCryptoBinary.java | 97 public void marshal(Node parent, String prefix, DOMCryptoContext context) argument
|
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | NotificationFilterSupport.java | 87 for (String prefix : enabledTypes) { 88 if (type.startsWith(prefix)) { 100 * Enables all the notifications the type of which starts with the specified prefix 102 * <BR>If the specified prefix is already in the list of enabled notification types, 121 * @param prefix The prefix. 122 * @exception java.lang.IllegalArgumentException The prefix parameter is null. 124 public synchronized void enableType(String prefix) argument 127 if (prefix == null) { 128 throw new IllegalArgumentException("The prefix canno 142 disableType(String prefix) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/iiop/ |
H A D | iiopURLContext.java | 66 * prefix parameter is ignored. 68 protected Name getURLSuffix(String prefix, String url) argument
|
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/ |
H A D | BeanInfoFinder.java | 56 protected BeanInfo instantiate(Class<?> type, String prefix, String name) { argument 57 if (DEFAULT.equals(prefix)) { 58 prefix = DEFAULT_NEW; 63 BeanInfo info = !DEFAULT_NEW.equals(prefix) || "ComponentBeanInfo".equals(name) 64 ? super.instantiate(type, prefix, name)
|
H A D | InstanceFinder.java | 80 for (String prefix : this.packages) { 81 object = instantiate(type, prefix, name); 106 protected T instantiate(Class<?> type, String prefix, String name) { argument 107 return instantiate(type, prefix + '.' + name);
|
H A D | PropertyEditorFinder.java | 92 protected PropertyEditor instantiate(Class<?> type, String prefix, String name) { argument 93 return super.instantiate(type, DEFAULT.equals(prefix) ? DEFAULT_NEW : prefix, name);
|